Skip to content

Commit

Permalink
Drop mouse focus and over when gui input is globally disabled
Browse files Browse the repository at this point in the history
  • Loading branch information
RandomShaper committed Mar 13, 2022
1 parent 7df288f commit d083fb2
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions scene/main/viewport.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2768,6 +2768,14 @@ Vector2 Viewport::get_camera_rect_size() const {
}

void Viewport::set_disable_input(bool p_disable) {
if (p_disable == disable_input) {
return;
}
if (p_disable) {
_drop_mouse_focus();
_drop_mouse_over();
_gui_cancel_tooltip();
}
disable_input = p_disable;
}

Expand Down

0 comments on commit d083fb2

Please sign in to comment.