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.
2 parents 23111b9 + 11fedb5 commit 8ae0545Copy full SHA for 8ae0545
glue_jupyter/view.py
@@ -26,6 +26,7 @@ class IPyWidgetView(Viewer):
26
27
_layer_artist_container_cls = IPyWidgetLayerArtistContainer
28
_default_mouse_mode_cls = None
29
+ _toolbar_cls = BasicJupyterToolbar
30
31
inherit_tools = True
32
tools = []
@@ -149,7 +150,7 @@ def initialize_toolbar(self):
149
150
151
from glue.config import viewer_tool
152
- self.toolbar = BasicJupyterToolbar(self)
153
+ self.toolbar = self._toolbar_cls(self)
154
155
# Need to include tools and subtools declared by parent classes unless
156
# specified otherwise
0 commit comments