mirror of https://github.com/GNOME/gimp.git
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.
This commit is contained in:
parent
02c8835e2c
commit
3af6b2ea3c
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue