aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Overlay.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Overlay.cpp b/src/Overlay.cpp
index 8cd4bb9..79e7bdc 100644
--- a/src/Overlay.cpp
+++ b/src/Overlay.cpp
@@ -874,7 +874,7 @@ namespace gsr {
on_press_start_replay(false);
} else if(recording_status == RecordingStatus::REPLAY) {
if(focused_window == 0 || !window_is_fullscreen(display, focused_window))
- on_press_start_replay(false);
+ on_press_start_replay(true);
}
}
@@ -1067,7 +1067,7 @@ namespace gsr {
update_ui_replay_stopped();
// TODO: Show this with a slight delay to make sure it doesn't show up in the video
- if(config.replay_config.show_replay_stopped_notifications)
+ if(!disable_notification && config.replay_config.show_replay_stopped_notifications)
show_notification("Replay stopped", 3.0, mgl::Color(255, 255, 255), get_color_theme().tint_color, NotificationType::REPLAY);
return;
}