Reduced the Width: and Height: labels to W: and H:. Please check and

2007-10-14  Michael Natterer  <mitch@gimp.org>

	* app/tools/gimprectangleoptions.c (gimp_rectangle_options_gui):
	Reduced the Width: and Height: labels to W: and H:. Please check
	and comment, we need some solution for this group of widgets
	including the unit menu.


svn path=/trunk/; revision=23825
This commit is contained in:
Michael Natterer 2007-10-14 20:24:57 +00:00 committed by Michael Natterer
parent 9003166a10
commit 3b2fa02a6e
2 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,10 @@
2007-10-14 Michael Natterer <mitch@gimp.org>
* app/tools/gimprectangleoptions.c (gimp_rectangle_options_gui):
Reduced the Width: and Height: labels to W: and H:. Please check
and comment, we need some solution for this group of widgets
including the unit menu.
2007-10-14 Michael Natterer <mitch@gimp.org>
* app/tools/gimprectangleoptions.c (gimp_rectangle_options_gui):

View File

@ -966,7 +966,7 @@ gimp_rectangle_options_gui (GimpToolOptions *tool_options)
gimp_size_entry_show_unit_menu (GIMP_SIZE_ENTRY (private->width_entry),
FALSE);
gimp_table_attach_aligned (GTK_TABLE (table), 0, row,
_("Width:"), 0.0, 0.5,
_("W:"), 0.0, 0.5,
private->width_entry, 1, TRUE);
row++;
@ -980,7 +980,7 @@ gimp_rectangle_options_gui (GimpToolOptions *tool_options)
FALSE);
#endif
gimp_table_attach_aligned (GTK_TABLE (table), 0, row,
_("Height:"), 0.0, 0.5,
_("H:"), 0.0, 0.5,
private->height_entry, 1, TRUE);
row++;