Skip to content

Commit ed15f8a

Browse files
committed
dockable MIP Tab
1 parent 93483ab commit ed15f8a

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/navigate/view/main_window_content/display_notebook.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def __init__(self, frame_top_right, *args, **kwargs):
8181
self.waveform_tab = WaveformTab(self)
8282

8383
# Tab list
84-
tab_list = [self.camera_tab, self.waveform_tab]
84+
tab_list = [self.camera_tab, self.mip_tab, self.waveform_tab]
8585
self.set_tablist(tab_list)
8686

8787
# Adding tabs to self notebook
@@ -111,6 +111,12 @@ def __init__(self, cam_wave, *args, **kwargs):
111111
#: int: The index of the tab.
112112
self.index = 1
113113

114+
#: Bool: The popup flag.
115+
self.is_popup = False
116+
117+
#: Bool: The docked flag.
118+
self.is_docked = True
119+
114120
# Formatting
115121
tk.Grid.columnconfigure(self, "all", weight=1)
116122
tk.Grid.rowconfigure(self, "all", weight=1)

0 commit comments

Comments
 (0)