From 213901264197c64eb183423f9508b2e336628897 Mon Sep 17 00:00:00 2001 From: William Skaggs Date: Sun, 4 Jun 2006 18:47:11 +0000 Subject: [PATCH] ll Skaggs * app/tools/gimpnewrectselectoptions.c: turn highlighting off by default. --- ChangeLog | 5 +++++ app/tools/gimpnewrectselectoptions.c | 2 ++ app/tools/gimprectangleselectoptions.c | 2 ++ 3 files changed, 9 insertions(+) diff --git a/ChangeLog b/ChangeLog index 20d2d67030..4c35ad2428 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-06-04 Bill Skaggs + + * app/tools/gimpnewrectselectoptions.c: turn highlighting + off by default. + 2006-06-04 Bill Skaggs * app/tools/gimprectangletool.c (gimp_rectangle_tool_draw): diff --git a/app/tools/gimpnewrectselectoptions.c b/app/tools/gimpnewrectselectoptions.c index 158e402bfb..b0779581d5 100644 --- a/app/tools/gimpnewrectselectoptions.c +++ b/app/tools/gimpnewrectselectoptions.c @@ -78,5 +78,7 @@ gimp_new_rect_select_options_gui (GimpToolOptions *tool_options) gtk_box_pack_start (GTK_BOX (vbox), vbox_rectangle, FALSE, FALSE, 0); gtk_widget_show (vbox_rectangle); + gimp_rectangle_options_set_highlight (GIMP_RECTANGLE_OPTIONS (tool_options), + FALSE); return vbox; } diff --git a/app/tools/gimprectangleselectoptions.c b/app/tools/gimprectangleselectoptions.c index 158e402bfb..b0779581d5 100644 --- a/app/tools/gimprectangleselectoptions.c +++ b/app/tools/gimprectangleselectoptions.c @@ -78,5 +78,7 @@ gimp_new_rect_select_options_gui (GimpToolOptions *tool_options) gtk_box_pack_start (GTK_BOX (vbox), vbox_rectangle, FALSE, FALSE, 0); gtk_widget_show (vbox_rectangle); + gimp_rectangle_options_set_highlight (GIMP_RECTANGLE_OPTIONS (tool_options), + FALSE); return vbox; }