From 02ad016b3963e18bffee323e52ec8f0980da532b Mon Sep 17 00:00:00 2001 From: Ell Date: Wed, 2 Aug 2017 04:39:36 -0400 Subject: [PATCH] app: don't show a PLUS cursor modifier before starting the blend tool We're going to use the PLUS modifier for adding gradient stops. --- app/tools/gimpblendtool.c | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/app/tools/gimpblendtool.c b/app/tools/gimpblendtool.c index c161e1aab7..35b8363e88 100644 --- a/app/tools/gimpblendtool.c +++ b/app/tools/gimpblendtool.c @@ -412,9 +412,8 @@ gimp_blend_tool_cursor_update (GimpTool *tool, GdkModifierType state, GimpDisplay *display) { - GimpBlendTool *blend_tool = GIMP_BLEND_TOOL (tool); - GimpImage *image = gimp_display_get_image (display); - GimpDrawable *drawable = gimp_image_get_active_drawable (image); + GimpImage *image = gimp_display_get_image (display); + GimpDrawable *drawable = gimp_image_get_active_drawable (image); if (gimp_viewable_get_children (GIMP_VIEWABLE (drawable)) || gimp_item_is_content_locked (GIMP_ITEM (drawable)) || @@ -426,14 +425,6 @@ gimp_blend_tool_cursor_update (GimpTool *tool, GIMP_CURSOR_MODIFIER_BAD); return; } - else if (display != tool->display || ! blend_tool->widget) - { - gimp_tool_set_cursor (tool, display, - gimp_tool_control_get_cursor (tool->control), - gimp_tool_control_get_tool_cursor (tool->control), - GIMP_CURSOR_MODIFIER_PLUS); - return; - } GIMP_TOOL_CLASS (parent_class)->cursor_update (tool, coords, state, display); }