gimp r27724 - in trunk: . app/dialogs
- From: martinn svn gnome org
 
- To: svn-commits-list gnome org
 
- Subject: gimp r27724 - in trunk: . app/dialogs
 
- Date: Thu, 27 Nov 2008 07:26:44 +0000 (UTC)
 
Author: martinn
Date: Thu Nov 27 07:26:44 2008
New Revision: 27724
URL: http://svn.gnome.org/viewvc/gimp?rev=27724&view=rev
Log:
Bug 562366 â Default image dimensions are not correctly
transferred in the file/new dialog box
* app/dialogs/preferences-dialog.c
(prefs_template_select_callback): We need to copy the template in
the same way as in the New Image dialog.
* app/dialogs/image-new-dialog.c (image_new_dialog_set): ... and
when we copy the template to the New Image dialog.
Modified:
   trunk/ChangeLog
   trunk/app/dialogs/image-new-dialog.c
Modified: trunk/app/dialogs/image-new-dialog.c
==============================================================================
--- trunk/app/dialogs/image-new-dialog.c	(original)
+++ trunk/app/dialogs/image-new-dialog.c	Thu Nov 27 07:26:44 2008
@@ -188,7 +188,11 @@
       template = gimp_image_new_get_last_template (dialog->context->gimp,
                                                    image);
 
-      gimp_config_sync (G_OBJECT (template), G_OBJECT (dialog->template), 0);
+      /*  make sure the resolution values are copied first (see bug #546924)  */
+      gimp_config_sync (G_OBJECT (template), G_OBJECT (dialog->template),
+                        GIMP_TEMPLATE_PARAM_COPY_FIRST);
+      gimp_config_sync (G_OBJECT (template), G_OBJECT (dialog->template),
+                        0);
 
       g_object_unref (template);
     }
[
Date Prev][
Date Next]   [
Thread Prev][
Thread Next]   
[
Thread Index]
[
Date Index]
[
Author Index]