From 3af6b2ea3cc41147b117a83315201afea9e19a73 Mon Sep 17 00:00:00 2001 From: Alexander Jones Date: Sun, 20 Sep 2009 19:03:20 +0100 Subject: [PATCH] Bug 593501 - Canvas Size dialog defaults to fixed aspect ratio Default to non-fixed aspect ratio in Canvas Size dialog. It doesn't make sense to deault to fixed aspect ratio here. --- app/dialogs/resize-dialog.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/app/dialogs/resize-dialog.c b/app/dialogs/resize-dialog.c index a6a3be3c75..408dcc04e9 100644 --- a/app/dialogs/resize-dialog.c +++ b/app/dialogs/resize-dialog.c @@ -174,7 +174,7 @@ resize_dialog_new (GimpViewable *viewable, "unit", unit, "xresolution", xres, "yresolution", yres, - "keep-aspect", TRUE, + "keep-aspect", FALSE, "edit-resolution", FALSE, NULL); @@ -363,10 +363,6 @@ resize_dialog_reset (ResizeDialog *private) "height", private->old_height, "unit", private->old_unit, NULL); - - g_object_set (private->box, - "keep-aspect", TRUE, - NULL); } static void -- GitLab