aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2024-07-19 23:39:23 +0200
committerdec05eba <dec05eba@protonmail.com>2024-07-19 23:39:23 +0200
commit2f4ab7aedb07f514be7b8abf0fba0930af0e60e3 (patch)
tree9fd8305baf9f24df604af310fc482a71dc9f2ace /src/main.cpp
parent66399616c12aea8329835290ec5a6e347c2d35fe (diff)
Text
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main.cpp b/src/main.cpp
index eb6a957..4a4d0fc 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -3134,7 +3134,7 @@ static GtkWidget* create_replay_page(GtkApplication *app, GtkStack *stack) {
GtkWidget *hotkey_active_label = nullptr;
if(gsr_info.system_info.display_server == DisplayServer::WAYLAND) {
- replay_hotkeys_not_supported_label = gtk_label_new("Your Wayland compositor doesn't support global hotkeys. Use X11 or KDE Plasma Wayland.");
+ replay_hotkeys_not_supported_label = gtk_label_new("Your Wayland compositor doesn't support global hotkeys. Use X11 or KDE Plasma on Wayland if you want to use hotkeys.");
gtk_grid_attach(grid, replay_hotkeys_not_supported_label, 0, row++, num_columns, 1);
} else {
hotkey_active_label = gtk_label_new("Press a key combination to set a new hotkey, backspace to remove the hotkey or esc to cancel.");
@@ -3333,7 +3333,7 @@ static GtkWidget* create_recording_page(GtkApplication *app, GtkStack *stack) {
GtkWidget *hotkey_active_label = nullptr;
if(gsr_info.system_info.display_server == DisplayServer::WAYLAND) {
- recording_hotkeys_not_supported_label = gtk_label_new("Your Wayland compositor doesn't support global hotkeys. Use X11 or KDE Plasma Wayland.");
+ recording_hotkeys_not_supported_label = gtk_label_new("Your Wayland compositor doesn't support global hotkeys. Use X11 or KDE Plasma on Wayland if you want to use hotkeys.");
gtk_grid_attach(grid, recording_hotkeys_not_supported_label, 0, row++, num_columns, 1);
} else {
hotkey_active_label = gtk_label_new("Press a key combination to set a new hotkey, backspace to remove the hotkey or esc to cancel.");
@@ -3514,7 +3514,7 @@ static GtkWidget* create_streaming_page(GtkApplication *app, GtkStack *stack) {
GtkWidget *hotkey_active_label = nullptr;
if(gsr_info.system_info.display_server == DisplayServer::WAYLAND) {
- streaming_hotkeys_not_supported_label = gtk_label_new("Your Wayland compositor doesn't support global hotkeys. Use X11 or KDE Plasma Wayland.");
+ streaming_hotkeys_not_supported_label = gtk_label_new("Your Wayland compositor doesn't support global hotkeys. Use X11 or KDE Plasma on Wayland if you want to use hotkeys.");
gtk_grid_attach(grid, streaming_hotkeys_not_supported_label, 0, row++, num_columns, 1);
} else {
hotkey_active_label = gtk_label_new("Press a key combination to set a new hotkey, backspace to remove the hotkey or esc to cancel.");