No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

SpinBoxPreventDnD.gd 188B

12345678
  1. tool
  2. extends SpinBox
  3. func can_drop_data(position, data):
  4. # this prevents locking the mouse
  5. # on some operating systems
  6. # due to a godot editor bug with SpinBox drag/drop
  7. return false