diff src/preferences.c @ 2587:c6f9494f6be1

Fix #508: Copy and Move windows scale incorrectly https://github.com/BestImageViewer/geeqie/issues/508
author cclark <colin.clark@cclark.uk>
date Wed, 06 Sep 2017 11:59:47 +0100
parents 3e5919841759
children 9c435c86a296
line wrap: on
line diff
--- a/src/preferences.c	Thu Aug 31 11:38:26 2017 +0100
+++ b/src/preferences.c	Wed Sep 06 11:59:47 2017 +0100
@@ -991,7 +991,7 @@
 				"reset_filter", widget, TRUE,
 				dummy_cancel_cb, data);
 	generic_dialog_add_message(gd, GTK_STOCK_DIALOG_QUESTION, _("Reset filters"),
-				   _("This will reset the file filters to the defaults.\nContinue?"));
+				   _("This will reset the file filters to the defaults.\nContinue?"), TRUE);
 	generic_dialog_add_button(gd, GTK_STOCK_OK, NULL, filter_default_ok_cb, TRUE);
 	gtk_widget_show(gd->dialog);
 }
@@ -1022,7 +1022,7 @@
 				"clear_trash", widget, TRUE,
 				dummy_cancel_cb, NULL);
 	generic_dialog_add_message(gd, GTK_STOCK_DIALOG_QUESTION, _("Clear trash"),
-				    _("This will remove the trash contents."));
+				    _("This will remove the trash contents."), FALSE);
 	generic_dialog_add_button(gd, GTK_STOCK_OK, NULL, safe_delete_clear_ok_cb, TRUE);
 	entry = gtk_entry_new();
 	gtk_widget_set_can_focus(entry, FALSE);
@@ -1070,7 +1070,7 @@
 				"reset_image_overlay_template_string", widget, TRUE,
 				dummy_cancel_cb, data);
 	generic_dialog_add_message(gd, GTK_STOCK_DIALOG_QUESTION, _("Reset image overlay template string"),
-				   _("This will reset the image overlay template string to the default.\nContinue?"));
+				   _("This will reset the image overlay template string to the default.\nContinue?"), TRUE);
 	generic_dialog_add_button(gd, GTK_STOCK_OK, NULL, image_overlay_default_template_ok_cb, TRUE);
 	gtk_widget_show(gd->dialog);
 }