Hide editor_spin_slider grabber when closing Editor's windows
Fixes: #38740
(cherry picked from commit 095167dcc3
)
This commit is contained in:
parent
9ee77179b5
commit
51a1a27457
|
@ -196,6 +196,7 @@ void EditorSpinSlider::_notification(int p_what) {
|
||||||
p_what == MainLoop::NOTIFICATION_WM_FOCUS_IN ||
|
p_what == MainLoop::NOTIFICATION_WM_FOCUS_IN ||
|
||||||
p_what == NOTIFICATION_EXIT_TREE) {
|
p_what == NOTIFICATION_EXIT_TREE) {
|
||||||
if (grabbing_spinner) {
|
if (grabbing_spinner) {
|
||||||
|
grabber->hide();
|
||||||
Input::get_singleton()->set_mouse_mode(Input::MOUSE_MODE_VISIBLE);
|
Input::get_singleton()->set_mouse_mode(Input::MOUSE_MODE_VISIBLE);
|
||||||
grabbing_spinner = false;
|
grabbing_spinner = false;
|
||||||
grabbing_spinner_attempt = false;
|
grabbing_spinner_attempt = false;
|
||||||
|
|
Loading…
Reference in New Issue