We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 883233c + 96ac633 commit b899a4cCopy full SHA for b899a4c
haxe/ui/backend/ScreenImpl.hx
@@ -169,9 +169,9 @@ class ScreenImpl extends ScreenBase {
169
170
private var _cursor:String = null;
171
public function setCursor(cursor:String, offsetX:Null<Int> = null, offsetY:Null<Int> = null) {
172
- #if haxeui_flixel_no_custom_cursors
+ #if (haxeui_flixel_no_custom_cursors || FLX_NO_MOUSE)
173
return;
174
- #end
+ #else
175
176
if (!CursorHelper.useCustomCursors) {
177
@@ -190,6 +190,7 @@ class ScreenImpl extends ScreenBase {
190
} else {
191
FlxG.mouse.load(null);
192
}
193
+ #end
194
195
196
public override function addComponent(component:Component):Component {
0 commit comments