removed frame around the mode radio buttons (bug #525747).

2008-04-02  Sven Neumann  <sven@gimp.org>

	* app/tools/gimpperspectiveclonetool.c: removed frame around the
	mode radio buttons (bug #525747).

	* app/tools/gimpdodgeburntool.c: relabelled "Mode" frame to 
"Range".


svn path=/trunk/; revision=25336
This commit is contained in:
Sven Neumann 2008-04-02 18:53:53 +00:00 committed by Sven Neumann
parent 9d9726e4cd
commit 842d68b491
3 changed files with 10 additions and 5 deletions

View File

@ -1,3 +1,10 @@
2008-04-02 Sven Neumann <sven@gimp.org>
* app/tools/gimpperspectiveclonetool.c: removed frame around the
mode radio buttons (bug #525747).
* app/tools/gimpdodgeburntool.c: relabelled "Mode" frame to "Range".
2008-04-02 Sven Neumann <sven@gimp.org>
* app/gui/splash.c: use gimp_pango_layout_set_weight().

View File

@ -210,8 +210,7 @@ gimp_dodge_burn_options_gui (GimpToolOptions *tool_options)
g_free (str);
/* mode (highlights, midtones, or shadows) */
frame = gimp_prop_enum_radio_frame_new (config, "mode",
_("Mode"), 0, 0);
frame = gimp_prop_enum_radio_frame_new (config, "mode", _("Range"), 0, 0);
gtk_box_pack_start (GTK_BOX (vbox), frame, FALSE, FALSE, 0);
gtk_widget_show (frame);

View File

@ -297,7 +297,7 @@ gimp_perspective_clone_tool_control (GimpTool *tool,
break;
case GIMP_TOOL_ACTION_RESUME:
/* only in the case that Mode: Modify Poligon is set " */
/* only in the case that "Modify Polygon" mode is set " */
gimp_perspective_clone_tool_bounds (clone_tool, display);
gimp_perspective_clone_tool_recalc (clone_tool, display);
break;
@ -948,8 +948,7 @@ gimp_perspective_clone_options_gui (GimpToolOptions *tool_options)
paint_options = gimp_paint_options_gui (tool_options);
/* radio buttons to set if you are modifying perspe plane or painting */
mode = gimp_prop_enum_radio_frame_new (config, "clone-mode",
_("Mode"), 0, 0);
mode = gimp_prop_enum_radio_box_new (config, "clone-mode", 0, 0);
gtk_box_pack_start (GTK_BOX (vbox), mode, FALSE, FALSE, 0);
gtk_widget_show (mode);