diff options
-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"); |