浏览代码

Merge pull request #77804 from ajreckof/prevent-disapearance-of-mouse-when-SpinBox-is-hidden-while-doing-a-drag-modification

Prevent disappearance of mouse when SpinBox is hidden while dragging
Rémi Verschelde 1 年之前
父节点
当前提交
7469b43392
共有 1 个文件被更改,包括 3 次插入0 次删除
  1. 3 0
      scene/gui/spin_box.cpp

+ 3 - 0
scene/gui/spin_box.cpp

@@ -263,6 +263,9 @@ void SpinBox::_notification(int p_what) {
 			_update_text();
 		} break;
 
+		case NOTIFICATION_VISIBILITY_CHANGED:
+			drag.allowed = false;
+			[[fallthrough]];
 		case NOTIFICATION_EXIT_TREE: {
 			_release_mouse();
 		} break;