Skip to content

Commit

Permalink
ENH: Hide status bar in zen mode, too (#295)
Browse files Browse the repository at this point in the history
  • Loading branch information
larsoner authored Nov 1, 2024
1 parent 3298550 commit 2fd1bb3
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions mne_qt_browser/_pg_figure.py
Original file line number Diff line number Diff line change
Expand Up @@ -5248,6 +5248,7 @@ def _toggle_zenmode(self):
self.mne.scrollbars_visible = not self.mne.scrollbars_visible
for bar in [self.mne.ax_hscroll, self.mne.ax_vscroll]:
bar.setVisible(self.mne.scrollbars_visible)
self.statusBar().setVisible(self.mne.scrollbars_visible)
self.mne.toolbar.setVisible(self.mne.scrollbars_visible)

def _new_child_figure(self, fig_name, window_title, **kwargs):
Expand Down

0 comments on commit 2fd1bb3

Please sign in to comment.