Fixed spelling of Suppress (#2472)

This commit is contained in:
Felanbird 2021-02-21 10:42:59 -05:00 committed by GitHub
parent e015013773
commit 032a791ec1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 6 deletions

View file

@ -175,13 +175,13 @@ void NotificationController::getFakeTwitchChannelLiveStatus(
}
if (getSettings()->notificationPlaySound &&
!(isInStreamerMode() &&
getSettings()->streamerModeSupressLiveNotifications))
getSettings()->streamerModeSuppressLiveNotifications))
{
getApp()->notifications->playSound();
}
if (getSettings()->notificationFlashTaskbar &&
!(isInStreamerMode() &&
getSettings()->streamerModeSupressLiveNotifications))
getSettings()->streamerModeSuppressLiveNotifications))
{
getApp()->windows->sendAlert();
}

View file

@ -193,7 +193,7 @@ public:
BoolSetting streamerModeHideViewerCountAndDuration = {
"/streamerMode/hideViewerCountAndDuration", false};
BoolSetting streamerModeMuteMentions = {"/streamerMode/muteMentions", true};
BoolSetting streamerModeSupressLiveNotifications = {
BoolSetting streamerModeSuppressLiveNotifications = {
"/streamerMode/supressLiveNotifications", false};
/// Ignored Phrases

View file

@ -40,7 +40,7 @@ bool Toasts::isEnabled()
return WinToastLib::WinToast::isCompatible() &&
getSettings()->notificationToast &&
!(isInStreamerMode() &&
getSettings()->streamerModeSupressLiveNotifications);
getSettings()->streamerModeSuppressLiveNotifications);
#else
return false;
#endif

View file

@ -351,8 +351,8 @@ void GeneralPage::initLayout(GeneralPageView &layout)
"Hide viewer count and stream length while hovering over split header",
s.streamerModeHideViewerCountAndDuration);
layout.addCheckbox("Mute mention sounds", s.streamerModeMuteMentions);
layout.addCheckbox("Supress Live Notifications",
s.streamerModeSupressLiveNotifications);
layout.addCheckbox("Suppress Live Notifications",
s.streamerModeSuppressLiveNotifications);
layout.addTitle("Link Previews");
layout.addDescription(