Skip to content

Commit

Permalink
tabs -> spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
ianharrigan committed Oct 11, 2024
1 parent 46ebd5c commit 0d968ba
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions haxe/ui/backend/flixel/UIState.hx
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package haxe.ui.backend.flixel;

import haxe.ui.layouts.LayoutFactory;
import haxe.ui.containers.Box;
import haxe.ui.core.Component;
import haxe.ui.events.UIEvent;
import haxe.ui.layouts.LayoutFactory;

@:autoBuild(haxe.ui.macros.Macros.buildBehaviours())
@:autoBuild(haxe.ui.macros.Macros.build())
Expand All @@ -27,9 +27,9 @@ class UIState extends UIStateBase { // must use -D haxeui_dont_impose_base_class

public override function create() {
super.create();
root.registerEvent(UIEvent.READY, (_) -> {
root.registerEvent(UIEvent.READY, (_) -> {
onReady();
});
});
add(root);
}

Expand Down Expand Up @@ -92,11 +92,11 @@ class UIState extends UIStateBase { // must use -D haxeui_dont_impose_base_class
return value;
}

public function show() {
root.show();
}
public function show() {
root.show();
}

public function hide() {
root.hide();
}
public function hide() {
root.hide();
}
}

0 comments on commit 0d968ba

Please sign in to comment.