Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ENH: Hide status bar in zen mode, too #295

Merged
merged 1 commit into from
Nov 1, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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