diff options
author | kobewi <kobewi4e@gmail.com> | 2024-07-02 08:45:05 +0200 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2024-07-02 08:45:05 +0200 |
commit | af28d582158d9cd4335dc99e79d1ad8e6e227625 (patch) | |
tree | d98d4a5bdc0ba5b9e8ee2f0795dba0e251bb9f8d /editor/plugins/tiles | |
parent | 9425535602a526a1b021838a7d021a5d75a62574 (diff) | |
download | redot-engine-af28d582158d9cd4335dc99e79d1ad8e6e227625.tar.gz |
Fix RMB erasing of tiles
Diffstat (limited to 'editor/plugins/tiles')
-rw-r--r-- | editor/plugins/tiles/tile_map_layer_editor.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/editor/plugins/tiles/tile_map_layer_editor.cpp b/editor/plugins/tiles/tile_map_layer_editor.cpp index f6e4c6f951..d3afd25502 100644 --- a/editor/plugins/tiles/tile_map_layer_editor.cpp +++ b/editor/plugins/tiles/tile_map_layer_editor.cpp @@ -764,12 +764,13 @@ bool TileMapLayerEditorTilesPlugin::forward_canvas_gui_input(const Ref<InputEven } else { // Released. - drag_erasing = false; if (drag_type == DRAG_TYPE_NONE) { + drag_erasing = false; return false; } else { _stop_dragging(); } + drag_erasing = false; } CanvasItemEditor::get_singleton()->update_viewport(); |