app: do not draw the big handle when we have a fallback for the outline.
If someone explicitly asked not to get a pointer, yet to have the outline, we should not force a crosshair on them while the fallback outline is a perfectly visible mark (4 arcs around the pointer's position, well delimiting the brush size).
This commit is contained in:
@ -863,9 +863,10 @@ gimp_paint_tool_draw (GimpDrawTool *draw_tool)
|
||||
0.0, (2.0 * G_PI));
|
||||
}
|
||||
|
||||
if (! outline &&
|
||||
! line_drawn &&
|
||||
! paint_tool->show_cursor &&
|
||||
if (! outline &&
|
||||
! paint_tool->draw_fallback &&
|
||||
! line_drawn &&
|
||||
! paint_tool->show_cursor &&
|
||||
! paint_tool->draw_circle)
|
||||
{
|
||||
/* don't leave the user without any indication and draw
|
||||
|
||||
Reference in New Issue
Block a user