mirror of
https://github.com/godotengine/godot.git
synced 2024-11-21 19:42:43 +00:00
Merge pull request #98232 from dbnicholson/editor-dock-select-root
Fix selecting root node before button released
This commit is contained in:
commit
68c35f498a
@ -126,7 +126,8 @@ void SceneTreeDock::input(const Ref<InputEvent> &p_event) {
|
|||||||
Ref<InputEventMouseButton> mb = p_event;
|
Ref<InputEventMouseButton> mb = p_event;
|
||||||
|
|
||||||
if (mb.is_valid() && (mb->get_button_index() == MouseButton::LEFT || mb->get_button_index() == MouseButton::RIGHT)) {
|
if (mb.is_valid() && (mb->get_button_index() == MouseButton::LEFT || mb->get_button_index() == MouseButton::RIGHT)) {
|
||||||
if (mb->is_pressed() && scene_tree->get_rect().has_point(scene_tree->get_local_mouse_position())) {
|
Tree *tree = scene_tree->get_scene_tree();
|
||||||
|
if (mb->is_pressed() && tree->get_rect().has_point(tree->get_local_mouse_position())) {
|
||||||
tree_clicked = true;
|
tree_clicked = true;
|
||||||
} else if (!mb->is_pressed()) {
|
} else if (!mb->is_pressed()) {
|
||||||
tree_clicked = false;
|
tree_clicked = false;
|
||||||
|
Loading…
Reference in New Issue
Block a user