summaryrefslogtreecommitdiffstats
path: root/scene/gui/spin_box.cpp
diff options
context:
space:
mode:
authorMathieuRoux <mathieu.roux222@gmail.com>2022-08-18 11:16:29 +0200
committerMathieuRoux <mathieu.roux222@gmail.com>2022-08-25 11:30:49 +0200
commit5ac5c8bc0693465ab5bd8e21adcded10898c1a55 (patch)
tree4a97d60815b3cb11c273b131593e1b5ae79386ca /scene/gui/spin_box.cpp
parent8769088f48a9acc7a28a55ceeba86cdcd6ba3a42 (diff)
downloadredot-engine-5ac5c8bc0693465ab5bd8e21adcded10898c1a55.tar.gz
Fix warp_mouse for transient windows, smoother mouse positioning when releasing mouse for spinbox
Diffstat (limited to 'scene/gui/spin_box.cpp')
-rw-r--r--scene/gui/spin_box.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/scene/gui/spin_box.cpp b/scene/gui/spin_box.cpp
index 517c83545c..ca81a61001 100644
--- a/scene/gui/spin_box.cpp
+++ b/scene/gui/spin_box.cpp
@@ -105,8 +105,9 @@ void SpinBox::_range_click_timeout() {
void SpinBox::_release_mouse() {
if (drag.enabled) {
drag.enabled = false;
- Input::get_singleton()->set_mouse_mode(Input::MOUSE_MODE_VISIBLE);
+ Input::get_singleton()->set_mouse_mode(Input::MOUSE_MODE_HIDDEN);
warp_mouse(drag.capture_pos);
+ Input::get_singleton()->set_mouse_mode(Input::MOUSE_MODE_VISIBLE);
}
}