From 842d68b491d24307667591f20dac99cb215f5b17 Mon Sep 17 00:00:00 2001 From: Sven Neumann Date: Wed, 2 Apr 2008 18:53:53 +0000 Subject: [PATCH] removed frame around the mode radio buttons (bug #525747). 2008-04-02 Sven Neumann * 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 --- ChangeLog | 7 +++++++ app/tools/gimpdodgeburntool.c | 3 +-- app/tools/gimpperspectiveclonetool.c | 5 ++--- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index 5a7e37abfd..ef612f6171 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2008-04-02 Sven Neumann + + * 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 * app/gui/splash.c: use gimp_pango_layout_set_weight(). diff --git a/app/tools/gimpdodgeburntool.c b/app/tools/gimpdodgeburntool.c index 8988a72d6a..4ccb7515c5 100644 --- a/app/tools/gimpdodgeburntool.c +++ b/app/tools/gimpdodgeburntool.c @@ -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); diff --git a/app/tools/gimpperspectiveclonetool.c b/app/tools/gimpperspectiveclonetool.c index 4037fd9bad..07c5ae25bc 100644 --- a/app/tools/gimpperspectiveclonetool.c +++ b/app/tools/gimpperspectiveclonetool.c @@ -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);