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
### ✨ Added
- Add a "Save Memory" setting that evicts inactive datasets from RAM and reloads them on demand ([#647](https://github.com/cbrnr/mnelab/pull/647) by [Clemens Brunner](https://github.com/cbrnr))
- Add icons for "Change Reference", "Interpolate Bad Channels", and "Documentation" actions ([#650](https://github.com/cbrnr/mnelab/pull/650) by [Clemens Brunner](https://github.com/cbrnr))

### 🔧 Fixed
- Enforce minimum sidebar and info widget widths so they can no longer be hidden ([#642](https://github.com/cbrnr/mnelab/pull/642) by [Clemens Brunner](https://github.com/cbrnr))
Expand Down
1 change: 1 addition & 0 deletions src/mnelab/icons/dark/actions/change-reference.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/mnelab/icons/dark/actions/documentation.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/mnelab/icons/dark/actions/interpolate-bads.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/mnelab/icons/light/actions/change-reference.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/mnelab/icons/light/actions/documentation.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/mnelab/icons/light/actions/interpolate-bads.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions src/mnelab/mainwindow.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ def __init__(self, model: Model):
)
channels_menu.addSeparator()
self.all_actions["change_ref"] = channels_menu.addAction(
QIcon.fromTheme("placeholder"),
QIcon.fromTheme("change-reference"),
"Change &Reference...",
self.change_reference,
)
Expand All @@ -242,7 +242,7 @@ def __init__(self, model: Model):
lambda: self.export_file(model.export_bads, "Export bad channels", "*.csv"),
)
self.all_actions["interpolate_bads"] = channels_menu.addAction(
QIcon.fromTheme("placeholder"),
QIcon.fromTheme("interpolate-bads"),
"Interpolate Bad Channels",
self.interpolate_bads,
)
Expand Down Expand Up @@ -453,7 +453,7 @@ def __init__(self, model: Model):
)
help_menu.addSeparator()
self.all_actions["documentation"] = help_menu.addAction(
QIcon.fromTheme("placeholder"),
QIcon.fromTheme("documentation"),
"&Documentation",
self.show_documentation,
)
Expand Down
Loading