Merge pull request #63300 from KoBeWi/local_speciality
This commit is contained in:
commit
2280f85bc5
1 changed files with 1 additions and 1 deletions
|
@ -72,7 +72,7 @@ void SceneTreeDock::input(const Ref<InputEvent> &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_pressed() && scene_tree->get_rect().has_point(mb->get_position())) {
|
||||
if (mb->is_pressed() && scene_tree->get_rect().has_point(scene_tree->get_local_mouse_position())) {
|
||||
tree_clicked = true;
|
||||
} else if (!mb->is_pressed()) {
|
||||
tree_clicked = false;
|
||||
|
|
Loading…
Add table
Reference in a new issue