diff options
author | dec05eba <dec05eba@protonmail.com> | 2023-10-21 23:56:36 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2023-10-21 23:56:36 +0200 |
commit | 4a9017f17b782bfa89a4c91d8d9a85c101cf4aab (patch) | |
tree | 08385f89c2f548abdd55fb0584bc7bdf051d0150 | |
parent | f97dedbadc8ff4f6a0da4de6cefb6f09b8ab816c (diff) |
Framerate mode -> Frame rate mode
-rw-r--r-- | com.dec05eba.gpu_screen_recorder.appdata.xml | 2 | ||||
-rw-r--r-- | src/main.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/com.dec05eba.gpu_screen_recorder.appdata.xml b/com.dec05eba.gpu_screen_recorder.appdata.xml index b32dcf2..22b47a8 100644 --- a/com.dec05eba.gpu_screen_recorder.appdata.xml +++ b/com.dec05eba.gpu_screen_recorder.appdata.xml @@ -56,7 +56,7 @@ <description> <ul> <li>AMD/Intel: workaround driver bug that causes vram leak</li> - <li>Add framerate mode option in advanced menu</li> + <li>Add frame rate mode option in advanced menu</li> <li>Redesign audio input to make it clear that you have to add audio to use it</li> </ul> </description> diff --git a/src/main.cpp b/src/main.cpp index bae4137..d5de334 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -2221,7 +2221,7 @@ static GtkWidget* create_common_settings_page(GtkStack *stack, GtkApplication *a framerate_mode_grid = GTK_GRID(gtk_grid_new()); gtk_grid_attach(grid, GTK_WIDGET(framerate_mode_grid), 0, grid_row++, 2, 1); - gtk_grid_attach(framerate_mode_grid, gtk_label_new("Framerate mode: "), 0, 0, 1, 1); + gtk_grid_attach(framerate_mode_grid, gtk_label_new("Frame rate mode: "), 0, 0, 1, 1); framerate_mode_input_menu = GTK_COMBO_BOX_TEXT(gtk_combo_box_text_new()); gtk_combo_box_text_append(framerate_mode_input_menu, "auto", "Auto (Recommended)"); gtk_combo_box_text_append(framerate_mode_input_menu, "cfr", "Constant"); |