gimp r25937 - in trunk: . app/tools



Author: neo
Date: Thu Jun 12 19:24:27 2008
New Revision: 25937
URL: http://svn.gnome.org/viewvc/gimp?rev=25937&view=rev

Log:
2008-06-12  Sven Neumann  <sven gimp org>

	* app/tools/gimprectangletool.c (gimp_rectangle_tool_motion):
	try to make the display of the aspect ratio somewhat more 
obvious.



Modified:
   trunk/ChangeLog
   trunk/app/tools/gimprectangletool.c

Modified: trunk/app/tools/gimprectangletool.c
==============================================================================
--- trunk/app/tools/gimprectangletool.c	(original)
+++ trunk/app/tools/gimprectangletool.c	Thu Jun 12 19:24:27 2008
@@ -1077,12 +1077,11 @@
         {
           gchar *aspect_text;
 
-          aspect_text = g_strdup_printf ("  %.2f",
-                                         w / (gdouble) h);
+          aspect_text = g_strdup_printf ("  (1:%.2f)", w / (gdouble) h);
 
           gimp_tool_push_status_coords (tool, display,
-                                        _("Rectangle: "), w, " Ã ", h, aspect_text);
-
+                                        _("Rectangle: "),
+                                        w, " Ã ", h, aspect_text);
           g_free (aspect_text);
         }
     }



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]