We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da0a36d commit 6e14b45Copy full SHA for 6e14b45
haxe/ui/components/NumberStepper.hx
@@ -1,5 +1,6 @@
1
package haxe.ui.components;
2
3
+import haxe.ui.constants.Priority;
4
import haxe.ui.actions.ActionType;
5
import haxe.ui.behaviours.DataBehaviour;
6
import haxe.ui.behaviours.DefaultBehaviour;
@@ -225,7 +226,7 @@ private class Events extends haxe.ui.events.Events {
225
226
_stepper.registerEvent(FocusEvent.FOCUS_OUT, onFocusOut);
227
}
228
if (!_stepper.hasEvent(MouseEvent.MOUSE_WHEEL, onMouseWheel)) {
- _stepper.registerEvent(MouseEvent.MOUSE_WHEEL, onMouseWheel);
229
+ _stepper.registerEvent(MouseEvent.MOUSE_WHEEL, onMouseWheel, Priority.LOW);
230
231
if (!LocaleManager.instance.hasEvent(LocaleEvent.LOCALE_CHANGED, onLocaleChanged)) {
232
LocaleManager.instance.registerEvent(LocaleEvent.LOCALE_CHANGED, onLocaleChanged);
0 commit comments