[TileSet] Fix crash when deleting dragged polygon point

This commit is contained in:
A Thousand Ships 2024-02-27 15:16:27 +01:00
parent a586e860e5
commit 0ba7463803
No known key found for this signature in database
GPG Key ID: 2033189A662F8BD7
1 changed files with 1 additions and 0 deletions

View File

@ -641,6 +641,7 @@ void GenericTilePolygonEditor::_base_control_gui_input(Ref<InputEvent> p_event)
undo_redo->add_undo_method(base_control, "queue_redraw"); undo_redo->add_undo_method(base_control, "queue_redraw");
undo_redo->commit_action(false); undo_redo->commit_action(false);
emit_signal(SNAME("polygons_changed")); emit_signal(SNAME("polygons_changed"));
drag_type = DRAG_TYPE_NONE;
} else { } else {
drag_type = DRAG_TYPE_PAN; drag_type = DRAG_TYPE_PAN;
drag_last_pos = mb->get_position(); drag_last_pos = mb->get_position();