Skip to content

Commit

Permalink
chore: rename user-facing notification muting text
Browse files Browse the repository at this point in the history
  • Loading branch information
jupjohn committed Oct 11, 2024
1 parent bea34e8 commit 582f452
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/controllers/hotkeys/ActionNames.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ inline const std::map<HotkeyCategory, ActionDefinitionMap> actionNames{
}},
{"toggleGlobalNotificationSuppression",
ActionDefinition{
.displayName = "Toggle notification suppression",
.displayName = "Toggle muting of all notifications",
.argumentDescription = "[on, off, or toggle. default: toggle]",
.minCountArguments = 0,
.maxCountArguments = 1,
Expand Down
2 changes: 1 addition & 1 deletion src/widgets/Notebook.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ Notebook::Notebook(QWidget *parent)
}

this->toggleNotificationSuppression_ =
new QAction("Suppress all notifications", this);
new QAction("Mute all notifications", this);
this->toggleNotificationSuppression_->setCheckable(true);
this->toggleNotificationSuppression_->setChecked(
getSettings()->globallySuppressNotifications);
Expand Down

0 comments on commit 582f452

Please sign in to comment.