aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2024-07-23 05:07:12 +0200
committerdec05eba <dec05eba@protonmail.com>2024-07-23 05:07:12 +0200
commitd987fb65a037fcc06633c6e18cd9653f4809a9fb (patch)
treeaf707e2c8ef4962d61f936533678ae12e9909d79
parent01ee2911f414f4b1b9088545cda76a39e464c009 (diff)
Remove no longer valid part from appdata
-rw-r--r--com.dec05eba.gpu_screen_recorder.appdata.xml1
-rw-r--r--src/main.cpp2
2 files changed, 1 insertions, 2 deletions
diff --git a/com.dec05eba.gpu_screen_recorder.appdata.xml b/com.dec05eba.gpu_screen_recorder.appdata.xml
index f922f09..832c9f9 100644
--- a/com.dec05eba.gpu_screen_recorder.appdata.xml
+++ b/com.dec05eba.gpu_screen_recorder.appdata.xml
@@ -41,7 +41,6 @@
and pkexec needs to be installed on the system and a polkit agent needs to be running.
Note that this only applies to when recording a monitor on AMD/Intel or when recording on Wayland without using the desktop portal option.
</p>
- <p>Recording a single window is only possible on X11. Hotkeys are not supported on wayland either (wayland doesn't really support this). Use X11 if you want a proper desktop experience in general.</p>
<p>AV1 is currently not supported in the flatpak for Nvidia since GPU Screen Recorder uses an older ffmpeg version to support older Nvidia cards. Install GPU Screen Recorder from source or from AUR if you want to use AV1 on Nvidia.</p>
<p>On some Intel integrated GPUs the video can appear glitched or be a black screen when recording on Wayland. Right now the only way to fix this is to either record on X11 (maybe only with the window capture option) or to record with the desktop portal option (usually only available on Wayland).</p>
<p>
diff --git a/src/main.cpp b/src/main.cpp
index 85a2050..3491ac5 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -3276,7 +3276,7 @@ static void create_recording_hotkey_items(GtkGrid *parent_grid, int row, int num
g_signal_connect(pause_unpause_hotkey_button, "button-press-event", G_CALLBACK(on_hotkey_entry_click), pause_unpause_hotkey_button);
gtk_grid_attach(recording_hotkeys_grid, pause_unpause_hotkey_button, 3, hotkeys_row, 1, 1);
- GtkWidget *pause_unpause_recording_label = gtk_label_new("to pause/unpause recording");
+ GtkWidget *pause_unpause_recording_label = gtk_label_new("to pause/unpause");
gtk_widget_set_halign(pause_unpause_recording_label, GTK_ALIGN_START);
gtk_widget_set_hexpand(pause_unpause_recording_label, true);
gtk_grid_attach(recording_hotkeys_grid, pause_unpause_recording_label, 4, hotkeys_row, 1, 1);