aboutsummaryrefslogtreecommitdiff
path: root/src/gui
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2024-11-02 11:56:01 +0100
committerdec05eba <dec05eba@protonmail.com>2024-11-02 11:56:01 +0100
commitbfadff61d2554b153d973b3cf150420ca60a4143 (patch)
tree24b948532a1987c8a7b2894f97a4184a6a712e81 /src/gui
parent6fbd8b0dd369c704b21c8757c1f66e55dcf1cb91 (diff)
Force window always on top, even if restacking order changes
Diffstat (limited to 'src/gui')
-rw-r--r--src/gui/SettingsPage.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/SettingsPage.cpp b/src/gui/SettingsPage.cpp
index 2ee1114..bf68500 100644
--- a/src/gui/SettingsPage.cpp
+++ b/src/gui/SettingsPage.cpp
@@ -526,7 +526,7 @@ namespace gsr {
}
std::unique_ptr<CheckBox> SettingsPage::create_start_replay_on_startup() {
- auto checkbox = std::make_unique<CheckBox>(&get_theme().body_font, "Start replay automatically");
+ auto checkbox = std::make_unique<CheckBox>(&get_theme().body_font, "Turn on replay automatically");
start_replay_automatically_ptr = checkbox.get();
return checkbox;
}