diff --git a/src/singletons/Settings.hpp b/src/singletons/Settings.hpp index f23189e11..1dc0b9192 100644 --- a/src/singletons/Settings.hpp +++ b/src/singletons/Settings.hpp @@ -145,6 +145,7 @@ public: BoolSetting notificationPlaySound = {"/notifications/enablePlaySound", false}; BoolSetting notificationToast = {"/notifications/enableToast", false}; + BoolSetting notificationDot = {"/notifications/enableDot", false}; /// External tools // Streamlink diff --git a/src/widgets/settingspages/NotificationPage.cpp b/src/widgets/settingspages/NotificationPage.cpp index 6dd756b80..54e342c4a 100644 --- a/src/widgets/settingspages/NotificationPage.cpp +++ b/src/widgets/settingspages/NotificationPage.cpp @@ -28,8 +28,7 @@ NotificationPage::NotificationPage() { auto settings = tabs.appendTab(new QVBoxLayout, "Options"); { - settings.emplace( - "Enable for channel next to channel name"); + settings.emplace("Enable for selected channels"); settings.append(this->createCheckBox( "Flash taskbar", getApp()->settings->notificationFlashTaskbar)); @@ -39,6 +38,9 @@ NotificationPage::NotificationPage() settings.append(this->createCheckBox( "Enable toasts (currently only for windows 8.x or 10)", getApp()->settings->notificationToast)); + settings.append( + this->createCheckBox("Red dot next to live splits", + getApp()->settings->notificationDot)); settings->addStretch(1); }