Merge pull request #26722 from MarianoGnu/fix_24238
TileSetEditor: Don't draw invalid occlusion shapes. Fixes #24238
This commit is contained in:
commit
2f2fa8db69
1 changed files with 5 additions and 3 deletions
|
@ -2460,11 +2460,13 @@ void TileSetEditor::draw_polygon_shapes() {
|
|||
workspace->draw_polygon(polygon, colors);
|
||||
|
||||
if (!creating_shape) {
|
||||
if (polygon.size() > 1) {
|
||||
for (int j = 0; j < polygon.size() - 1; j++) {
|
||||
workspace->draw_line(polygon[j], polygon[j + 1], c_border, 1, true);
|
||||
}
|
||||
workspace->draw_line(polygon[polygon.size() - 1], polygon[0], c_border, 1, true);
|
||||
}
|
||||
}
|
||||
if (shape == edited_occlusion_shape) {
|
||||
draw_handles = true;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue