Skip to content

Commit

Permalink
update (mne-tools#10301)
Browse files Browse the repository at this point in the history
  • Loading branch information
GuillaumeFavelier authored Feb 4, 2022
1 parent 6422d6c commit 40eaa0e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mne/viz/backends/_notebook.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from IPython.display import display
from ipywidgets import (Button, Dropdown, FloatSlider, BoundedFloatText, HBox,
IntSlider, IntText, Text, VBox, IntProgress, Play,
Checkbox, RadioButtons, jsdlink)
Checkbox, RadioButtons, HTML, jsdlink)

from ._abstract import (_AbstractDock, _AbstractToolBar, _AbstractMenuBar,
_AbstractStatusBar, _AbstractLayout, _AbstractWidget,
Expand Down Expand Up @@ -70,7 +70,7 @@ def _dock_add_label(
self, value, *, align=False, layout=None, selectable=False
):
layout = self._dock_layout if layout is None else layout
widget = Text(value=value, disabled=True)
widget = HTML(value=value, disabled=True)
self._layout_add_widget(layout, widget)
return _IpyWidget(widget)

Expand Down

0 comments on commit 40eaa0e

Please sign in to comment.