Skip to content
Merged
Show file tree
Hide file tree
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 CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## [UNRELEASED] · YYYY-MM-DD
### 🔧 Fixed
- Show an overwrite confirmation dialog when an export target file already exists instead of raising an error ([#660](https://github.com/cbrnr/mnelab/pull/660) by [Clemens Brunner](https://github.com/cbrnr))
- Fix a regression where the hamburger menu would not be shown after clicking "OK" in the Settings dialog ([#662](https://github.com/cbrnr/mnelab/pull/662) by [Clemens Brunner](https://github.com/cbrnr))

## [1.5.2] · 2026-05-28
### ✨ Added
Expand Down
3 changes: 3 additions & 0 deletions src/mnelab/mainwindow.py
Original file line number Diff line number Diff line change
Expand Up @@ -1925,6 +1925,9 @@ def _apply_toolbar(self, action_keys):
self._hamburger_spacer_widget
)
self._hamburger_action = self.toolbar.addWidget(self._hamburger_button)
hamburger_enabled = not read_settings("show_menubar")
self._hamburger_spacer_action.setVisible(hamburger_enabled)
self._hamburger_action.setVisible(hamburger_enabled)

@Slot()
def _show_toolbar_context_menu(self, pos):
Expand Down