Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 6da8610

Browse files
committedFeb 21, 2025·
Wx: Fix RGB lutview label
1 parent b0a74c4 commit 6da8610

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎src/ndv/views/_wx/_array_view.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -153,9 +153,9 @@ def __init__(self, parent: wx.Window) -> None:
153153
super().__init__(parent)
154154
self._wxwidget.cmap.Hide()
155155
# FIXME
156-
# lbl = wx.StaticText(self, label="RGB")
157-
# self._wxwidget._sizer.Insert(1, lbl, 0, wx.ALIGN_CENTER_VERTICAL, 5)
158-
# self._wxwidget.Layout()
156+
lbl = wx.StaticText(self._wxwidget, label="RGB")
157+
self._wxwidget._sizer.Insert(1, lbl, 0, wx.ALIGN_CENTER_VERTICAL, 5)
158+
self._wxwidget.Layout()
159159

160160

161161
# mostly copied from _qt.qt_view._QDimsSliders

0 commit comments

Comments
 (0)
Please sign in to comment.