diff options
author | kobewi <kobewi4e@gmail.com> | 2024-06-29 18:18:54 +0200 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2024-06-29 18:18:54 +0200 |
commit | 92b0375785e1b4defa8a0a00b509f5c72264e15b (patch) | |
tree | 2b36a6bfb7538ad438df3be0bd6d9cb2cfa09978 /editor/plugins/tiles | |
parent | 25de53e147a04ba15afc461b3ad4aa1884ff927d (diff) | |
download | redot-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.cpp | 8 |
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(); |