Applied a patch from Patrice Tremblay that makes (almost) all dialogs obey

2005-02-08  Sven Neumann  <sven@gimp.org>

	Applied a patch from Patrice Tremblay that makes (almost) all
	dialogs obey the "gtk-alternative-button-order" setting
	(bug #166678). Changes too many files to list them all...
This commit is contained in:
Sven Neumann
2005-02-08 20:40:33 +00:00
committed by Sven Neumann
parent 2d38ab6a43
commit 8c83ddc063
159 changed files with 834 additions and 0 deletions

View File

@ -75,6 +75,11 @@ layer_add_mask_dialog_new (GimpLayer *layer,
g_object_weak_ref (G_OBJECT (dialog->dialog),
(GWeakNotify) g_free, dialog);
gtk_dialog_set_alternative_button_order (GTK_DIALOG (dialog->dialog),
GTK_RESPONSE_OK,
GTK_RESPONSE_CANCEL,
-1);
vbox = gtk_vbox_new (FALSE, 12);
gtk_container_set_border_width (GTK_CONTAINER (vbox), 12);
gtk_container_add (GTK_CONTAINER (GTK_DIALOG (dialog->dialog)->vbox), vbox);