Bläddra i källkod

Merge pull request #55445 from fazil47/master

Right-clicking with copied tiles cancels it
Gilles Roudière 3 år sedan
förälder
incheckning
aa74494ab9
1 ändrade filer med 4 tillägg och 1 borttagningar
  1. 4 1
      editor/plugins/tiles/tile_map_editor.cpp

+ 4 - 1
editor/plugins/tiles/tile_map_editor.cpp

@@ -598,7 +598,10 @@ bool TileMapEditorTilesPlugin::forward_canvas_gui_input(const Ref<InputEvent> &p
 				}
 
 				if (drag_type == DRAG_TYPE_CLIPBOARD_PASTE) {
-					// Do nothing.
+					// Cancel tile pasting on right-click
+					if (mb->get_button_index() == MouseButton::RIGHT) {
+						drag_type = DRAG_TYPE_NONE;
+					}
 				} else if (tool_buttons_group->get_pressed_button() == select_tool_button) {
 					drag_start_mouse_pos = mpos;
 					if (tile_map_selection.has(tile_map->world_to_map(drag_start_mouse_pos)) && !mb->is_shift_pressed()) {