Fixed spelling of Suppress (#2472)
This commit is contained in:
@@ -175,13 +175,13 @@ void NotificationController::getFakeTwitchChannelLiveStatus(
|
|||||||
}
|
}
|
||||||
if (getSettings()->notificationPlaySound &&
|
if (getSettings()->notificationPlaySound &&
|
||||||
!(isInStreamerMode() &&
|
!(isInStreamerMode() &&
|
||||||
getSettings()->streamerModeSupressLiveNotifications))
|
getSettings()->streamerModeSuppressLiveNotifications))
|
||||||
{
|
{
|
||||||
getApp()->notifications->playSound();
|
getApp()->notifications->playSound();
|
||||||
}
|
}
|
||||||
if (getSettings()->notificationFlashTaskbar &&
|
if (getSettings()->notificationFlashTaskbar &&
|
||||||
!(isInStreamerMode() &&
|
!(isInStreamerMode() &&
|
||||||
getSettings()->streamerModeSupressLiveNotifications))
|
getSettings()->streamerModeSuppressLiveNotifications))
|
||||||
{
|
{
|
||||||
getApp()->windows->sendAlert();
|
getApp()->windows->sendAlert();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -193,7 +193,7 @@ public:
|
|||||||
BoolSetting streamerModeHideViewerCountAndDuration = {
|
BoolSetting streamerModeHideViewerCountAndDuration = {
|
||||||
"/streamerMode/hideViewerCountAndDuration", false};
|
"/streamerMode/hideViewerCountAndDuration", false};
|
||||||
BoolSetting streamerModeMuteMentions = {"/streamerMode/muteMentions", true};
|
BoolSetting streamerModeMuteMentions = {"/streamerMode/muteMentions", true};
|
||||||
BoolSetting streamerModeSupressLiveNotifications = {
|
BoolSetting streamerModeSuppressLiveNotifications = {
|
||||||
"/streamerMode/supressLiveNotifications", false};
|
"/streamerMode/supressLiveNotifications", false};
|
||||||
|
|
||||||
/// Ignored Phrases
|
/// Ignored Phrases
|
||||||
|
|||||||
@@ -40,7 +40,7 @@ bool Toasts::isEnabled()
|
|||||||
return WinToastLib::WinToast::isCompatible() &&
|
return WinToastLib::WinToast::isCompatible() &&
|
||||||
getSettings()->notificationToast &&
|
getSettings()->notificationToast &&
|
||||||
!(isInStreamerMode() &&
|
!(isInStreamerMode() &&
|
||||||
getSettings()->streamerModeSupressLiveNotifications);
|
getSettings()->streamerModeSuppressLiveNotifications);
|
||||||
#else
|
#else
|
||||||
return false;
|
return false;
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -351,8 +351,8 @@ void GeneralPage::initLayout(GeneralPageView &layout)
|
|||||||
"Hide viewer count and stream length while hovering over split header",
|
"Hide viewer count and stream length while hovering over split header",
|
||||||
s.streamerModeHideViewerCountAndDuration);
|
s.streamerModeHideViewerCountAndDuration);
|
||||||
layout.addCheckbox("Mute mention sounds", s.streamerModeMuteMentions);
|
layout.addCheckbox("Mute mention sounds", s.streamerModeMuteMentions);
|
||||||
layout.addCheckbox("Supress Live Notifications",
|
layout.addCheckbox("Suppress Live Notifications",
|
||||||
s.streamerModeSupressLiveNotifications);
|
s.streamerModeSuppressLiveNotifications);
|
||||||
|
|
||||||
layout.addTitle("Link Previews");
|
layout.addTitle("Link Previews");
|
||||||
layout.addDescription(
|
layout.addDescription(
|
||||||
|
|||||||
Reference in New Issue
Block a user