From 00a93e43147bd6b453c22201b6fda687e0e540a4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Andreas=20R=C3=B6nnquist?= Date: Tue, 20 Feb 2024 13:48:32 +0100 Subject: [PATCH] Fix representing percent in c-format string --- src/preferences.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/preferences.cc b/src/preferences.cc index 96d3c788..248c9c33 100644 --- a/src/preferences.cc +++ b/src/preferences.cc @@ -2339,7 +2339,7 @@ static void config_tab_image(GtkWidget *notebook) gtk_widget_set_tooltip_text(GTK_WIDGET(hbox), _("Enable this to allow Geeqie to increase the image size for images that are smaller than the current view area when the zoom is set to \"Fit image to window\". This value sets the maximum expansion permitted in percent i.e. 100% is full-size.")); hbox = pref_box_new(group, FALSE, GTK_ORIENTATION_HORIZONTAL, PREF_PAD_SPACE); - ct_button = pref_checkbox_new_int(hbox, _("Virtual window size (% of actual window):"), + ct_button = pref_checkbox_new_int(hbox, _("Virtual window size (%% of actual window):"), options->image.limit_autofit_size, &c_options->image.limit_autofit_size); spin = pref_spin_new_int(hbox, nullptr, nullptr, 10, 150, 1, -- 2.20.1