diff --git a/src/Tools/Bucket.gd b/src/Tools/Bucket.gd index 3c22feaa9..f6a4d2859 100644 --- a/src/Tools/Bucket.gd +++ b/src/Tools/Bucket.gd @@ -302,7 +302,7 @@ func _flood_line_around_point( segment.todo_below = position.y < project.size.y - 1 # this is an actual segment we should be coloring, so we add it to the results for the # current image - if segment.right_position > segment.left_position: + if segment.right_position >= segment.left_position: _allegro_image_segments.append(segment) # we know the point just east of the segment is not part of a segment that should be # processed, else it would be part of this segment