Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3894346 commit 102dc4cCopy full SHA for 102dc4c
src/napari_matplotlib/base.py
@@ -17,10 +17,10 @@
17
# Icons modified from
18
# https://github.com/matplotlib/matplotlib/tree/main/lib/matplotlib/mpl-data/images
19
ICON_ROOT = Path(__file__).parent / "icons"
20
-__all__ = ["BaseNapariMPLWidget", "NapariMPLWidget"]
+__all__ = ["MPLWidget", "NapariMPLWidget"]
21
22
23
-class BaseNapariMPLWidget(QWidget):
+class MPLWidget(QWidget):
24
"""
25
Widget containing a Matplotlib canvas and toolbar.
26
@@ -99,7 +99,7 @@ def _replace_toolbar_icons(self) -> None:
99
action.setIcon(QIcon(icon_path))
100
101
102
-class NapariMPLWidget(BaseNapariMPLWidget):
+class NapariMPLWidget(MPLWidget):
103
104
105
0 commit comments