aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2025-05-16 18:09:39 +0200
committerdec05eba <dec05eba@protonmail.com>2025-05-16 18:09:39 +0200
commit9ac14c963e1a45ff12e7d61528a2b84bc61c4305 (patch)
treeaa94eb037cb5787b3324b7e90fdf9a6bdf10c77b /include
parentcae1c476435a6b8af6a0a3cd73d9e9e7dcbcfed1 (diff)
Properly honor notification settings (when not saving video in game folder). Add pause/unpause notification option
Diffstat (limited to 'include')
-rw-r--r--include/Config.hpp1
-rw-r--r--include/gui/SettingsPage.hpp1
2 files changed, 2 insertions, 0 deletions
diff --git a/include/Config.hpp b/include/Config.hpp
index 2bb79fb..c094125 100644
--- a/include/Config.hpp
+++ b/include/Config.hpp
@@ -100,6 +100,7 @@ namespace gsr {
bool save_video_in_game_folder = false;
bool show_recording_started_notifications = true;
bool show_video_saved_notifications = true;
+ bool show_video_paused_notifications = true;
std::string save_directory;
std::string container = "mp4";
ConfigHotkey start_stop_hotkey;
diff --git a/include/gui/SettingsPage.hpp b/include/gui/SettingsPage.hpp
index 2a78802..d433a88 100644
--- a/include/gui/SettingsPage.hpp
+++ b/include/gui/SettingsPage.hpp
@@ -186,6 +186,7 @@ namespace gsr {
CheckBox *save_recording_in_game_folder_ptr = nullptr;
CheckBox *show_recording_started_notification_checkbox_ptr = nullptr;
CheckBox *show_video_saved_notification_checkbox_ptr = nullptr;
+ CheckBox *show_video_paused_notification_checkbox_ptr = nullptr;
CheckBox *show_streaming_started_notification_checkbox_ptr = nullptr;
CheckBox *show_streaming_stopped_notification_checkbox_ptr = nullptr;
Button *save_directory_button_ptr = nullptr;