mirror of https://github.com/GNOME/gimp.git
Bill Skaggs <weskaggs@primate.ucdavis.edu>
* app/tools/gimprectangleselecttool.[ch]: if the user is modifying a rectangle and the mode is REPLACE, don't show the marching ants for the previous selection, because it confuses users. Should fix bug #347945.
This commit is contained in:
parent
2c4f513d52
commit
d5cfa53e83
|
@ -1,3 +1,10 @@
|
|||
2006-08-10 Bill Skaggs <weskaggs@primate.ucdavis.edu>
|
||||
|
||||
* app/tools/gimprectangleselecttool.[ch]: if the user is
|
||||
modifying a rectangle and the mode is REPLACE, don't
|
||||
show the marching ants for the previous selection, because
|
||||
it confuses users. Should fix bug #347945.
|
||||
|
||||
2006-08-10 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* plug-ins/common/autocrop.c: fixed the check for an empty image.
|
||||
|
|
|
@ -47,6 +47,7 @@
|
|||
#include "display/gimpdisplay.h"
|
||||
#include "display/gimpdisplayshell.h"
|
||||
#include "display/gimpdisplayshell-transform.h"
|
||||
#include "display/gimpdisplayshell-appearance.h"
|
||||
|
||||
#include "gimpselectiontool.h"
|
||||
#include "gimpselectionoptions.h"
|
||||
|
@ -268,6 +269,9 @@ gimp_rect_select_tool_button_press (GimpTool *tool,
|
|||
|
||||
g_object_get (tool, "function", &function, NULL);
|
||||
|
||||
rect_select->saved_show_selection
|
||||
= gimp_display_shell_get_show_selection (GIMP_DISPLAY_SHELL (display->shell));
|
||||
|
||||
if (function == RECT_INACTIVE)
|
||||
{
|
||||
GimpDisplay *old_display;
|
||||
|
@ -309,6 +313,16 @@ gimp_rect_select_tool_button_press (GimpTool *tool,
|
|||
{
|
||||
GimpImage *image = tool->display->image;
|
||||
GimpUndo *undo;
|
||||
GimpSelectionOptions *options;
|
||||
SelectOps operation;
|
||||
|
||||
options = GIMP_SELECTION_OPTIONS (tool->tool_info->tool_options);
|
||||
if (rect_select->use_saved_op)
|
||||
operation = rect_select->operation;
|
||||
else
|
||||
g_object_get (options,
|
||||
"operation", &operation,
|
||||
NULL);
|
||||
|
||||
undo = gimp_undo_stack_peek (image->undo_stack);
|
||||
|
||||
|
@ -324,6 +338,12 @@ gimp_rect_select_tool_button_press (GimpTool *tool,
|
|||
/* we will need to redo if the user cancels or executes */
|
||||
rect_select->redo = gimp_undo_stack_peek (image->redo_stack);
|
||||
}
|
||||
|
||||
/* if the operation is "Replace", turn off the marching ants,
|
||||
because they are confusing */
|
||||
if (operation == SELECTION_REPLACE)
|
||||
gimp_display_shell_set_show_selection (GIMP_DISPLAY_SHELL (display->shell),
|
||||
FALSE);
|
||||
}
|
||||
|
||||
rect_select->undo = NULL;
|
||||
|
@ -342,6 +362,8 @@ gimp_rect_select_tool_button_release (GimpTool *tool,
|
|||
GimpSelectionOptions *options;
|
||||
|
||||
gimp_tool_pop_status (tool, display);
|
||||
gimp_display_shell_set_show_selection (GIMP_DISPLAY_SHELL (display->shell),
|
||||
rect_select->saved_show_selection);
|
||||
|
||||
options = GIMP_SELECTION_OPTIONS (tool->tool_info->tool_options);
|
||||
|
||||
|
|
|
@ -39,6 +39,7 @@ struct _GimpRectSelectTool
|
|||
|
||||
SelectOps operation; /* remember for use when modifying */
|
||||
gboolean use_saved_op; /* use operation or get from options */
|
||||
gboolean saved_show_selection; /* used to remember existing value */
|
||||
GimpUndo *undo;
|
||||
GimpUndo *redo;
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue