app: fixed oversight in the canvashandle bounding box.

This commit is contained in:
Simon Budig 2020-05-15 03:01:36 +02:00
parent 000bc5fff4
commit f55acc1d65
1 changed files with 1 additions and 1 deletions

View File

@ -519,7 +519,7 @@ gimp_canvas_handle_get_extents (GimpCanvasItem *item)
case GIMP_HANDLE_FILLED_DROP:
rectangle.x = x - private->width / 2.0 - 2.0;
rectangle.y = y - private->height / 2.0 - 2.0;
rectangle.width = private->width * 1.21 + 4.0;
rectangle.width = private->width * 1.5 + 4.0;
rectangle.height = private->height + 4.0;
break;