Skip to content

Commit dd5767a

Browse files
committed
Core: Add matplotlib backend name for lab 4
In lab 4 the `ipympl.backend_nbagg` backend is called `widget`.
1 parent 6c48f43 commit dd5767a

File tree

1 file changed

+18
-3
lines changed

1 file changed

+18
-3
lines changed

src/scwidgets/cue/_widget_cue_figure.py

+18-3
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,12 @@ def __init__(
6565
# we close the figure so the figure is only contained in this widget
6666
# and not shown using plt.show()
6767
plt.close(self.figure)
68-
elif matplotlib.backends.backend == "module://ipympl.backend_nbagg":
68+
elif (
69+
matplotlib.backends.backend == "module://ipympl.backend_nbagg"
70+
or matplotlib.backends.backend == "widget"
71+
):
72+
# jupyter lab 3 uses "module://ipympl.backend_nbagg"
73+
# jupyter lab 4 uses "widget"
6974
with self:
7075
self.figure.canvas.show()
7176
else:
@@ -83,7 +88,12 @@ def clear_display(self, wait=False):
8388
if matplotlib.backends.backend == "module://matplotlib_inline.backend_inline":
8489
self.clear_figure()
8590
self.clear_output(wait=wait)
86-
elif matplotlib.backends.backend == "module://ipympl.backend_nbagg":
91+
elif (
92+
matplotlib.backends.backend == "module://ipympl.backend_nbagg"
93+
or matplotlib.backends.backend == "widget"
94+
):
95+
# jupyter lab 3 uses "module://ipympl.backend_nbagg"
96+
# jupyter lab 4 uses "widget"
8797
self.clear_figure()
8898
if not (wait):
8999
self.figure.canvas.draw_idle()
@@ -100,7 +110,12 @@ def draw_display(self):
100110
if matplotlib.backends.backend == "module://matplotlib_inline.backend_inline":
101111
with self:
102112
display(self.figure)
103-
elif matplotlib.backends.backend == "module://ipympl.backend_nbagg":
113+
elif (
114+
matplotlib.backends.backend == "module://ipympl.backend_nbagg"
115+
or matplotlib.backends.backend == "widget"
116+
):
117+
# jupyter lab 3 uses "module://ipympl.backend_nbagg"
118+
# jupyter lab 4 uses "widget"
104119
self.figure.canvas.draw_idle()
105120
self.figure.canvas.flush_events()
106121
else:

0 commit comments

Comments
 (0)