From 0d968bac711e658bd791e362ba959d1505f5c2bb Mon Sep 17 00:00:00 2001 From: Ian Harrigan Date: Fri, 11 Oct 2024 09:29:59 +0200 Subject: [PATCH] tabs -> spaces --- haxe/ui/backend/flixel/UIState.hx | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/haxe/ui/backend/flixel/UIState.hx b/haxe/ui/backend/flixel/UIState.hx index c1362eb..20ca40a 100644 --- a/haxe/ui/backend/flixel/UIState.hx +++ b/haxe/ui/backend/flixel/UIState.hx @@ -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()) @@ -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); } @@ -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(); + } }