mirror of
https://github.com/godotengine/godot.git
synced 2024-11-22 20:23:53 +00:00
Cancel drag when selection changes
This commit is contained in:
parent
95f1f4e82a
commit
7e5340261a
@ -794,6 +794,7 @@ bool CanvasItemEditor::_select_click_on_item(CanvasItem *item, Point2 p_click_po
|
||||
editor_selection->add_node(item);
|
||||
// Reselect
|
||||
if (Engine::get_singleton()->is_editor_hint()) {
|
||||
selected_from_canvas = true;
|
||||
editor->call("edit_node", item);
|
||||
}
|
||||
}
|
||||
@ -3911,6 +3912,11 @@ void CanvasItemEditor::_selection_changed() {
|
||||
}
|
||||
anchors_mode = (nbValidControls == nbAnchorsMode);
|
||||
anchor_mode_button->set_pressed(anchors_mode);
|
||||
|
||||
if (!selected_from_canvas) {
|
||||
drag_type = DRAG_NONE;
|
||||
}
|
||||
selected_from_canvas = false;
|
||||
}
|
||||
|
||||
void CanvasItemEditor::edit(CanvasItem *p_canvas_item) {
|
||||
@ -5253,6 +5259,7 @@ CanvasItemEditor::CanvasItemEditor(EditorNode *p_editor) {
|
||||
snap_target[0] = SNAP_TARGET_NONE;
|
||||
snap_target[1] = SNAP_TARGET_NONE;
|
||||
|
||||
selected_from_canvas = false;
|
||||
anchors_mode = false;
|
||||
|
||||
skeleton_show_bones = true;
|
||||
|
@ -252,6 +252,7 @@ private:
|
||||
Point2 view_offset;
|
||||
Point2 previous_update_view_offset;
|
||||
|
||||
bool selected_from_canvas;
|
||||
bool anchors_mode;
|
||||
|
||||
Point2 grid_offset;
|
||||
|
Loading…
Reference in New Issue
Block a user