summaryrefslogtreecommitdiffstats
path: root/editor/plugins/tiles
diff options
context:
space:
mode:
authorkobewi <kobewi4e@gmail.com>2024-06-29 18:18:54 +0200
committerkobewi <kobewi4e@gmail.com>2024-06-29 18:18:54 +0200
commit92b0375785e1b4defa8a0a00b509f5c72264e15b (patch)
tree2b36a6bfb7538ad438df3be0bd6d9cb2cfa09978 /editor/plugins/tiles
parent25de53e147a04ba15afc461b3ad4aa1884ff927d (diff)
downloadredot-engine-92b0375785e1b4defa8a0a00b509f5c72264e15b.tar.gz
Fix some TileMapLayer editing problems
Diffstat (limited to 'editor/plugins/tiles')
-rw-r--r--editor/plugins/tiles/tile_map_layer_editor.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/editor/plugins/tiles/tile_map_layer_editor.cpp b/editor/plugins/tiles/tile_map_layer_editor.cpp
index 41b8b88f73..f6e4c6f951 100644
--- a/editor/plugins/tiles/tile_map_layer_editor.cpp
+++ b/editor/plugins/tiles/tile_map_layer_editor.cpp
@@ -763,9 +763,13 @@ bool TileMapLayerEditorTilesPlugin::forward_canvas_gui_input(const Ref<InputEven
}
} else {
- // Released
- _stop_dragging();
+ // Released.
drag_erasing = false;
+ if (drag_type == DRAG_TYPE_NONE) {
+ return false;
+ } else {
+ _stop_dragging();
+ }
}
CanvasItemEditor::get_singleton()->update_viewport();