From 7380564655f0417565a86b07545b7a41be7507a7 Mon Sep 17 00:00:00 2001 From: Josh Tynjala Date: Mon, 9 Oct 2023 09:33:01 -0700 Subject: [PATCH] Haxe 4.3 SWF compatibility --- src/moonshine/editor/text/TextEditor.hx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/moonshine/editor/text/TextEditor.hx b/src/moonshine/editor/text/TextEditor.hx index 8188777..e45abbb 100755 --- a/src/moonshine/editor/text/TextEditor.hx +++ b/src/moonshine/editor/text/TextEditor.hx @@ -1916,8 +1916,8 @@ private class TextEditorListView extends ListView { disabledBackgroundSkin = null; } - @:getter(tabEnabled) - override private function get_tabEnabled() { + #if (flash && haxe_ver < 4.3) @:getter(tabEnabled) #end + override private function get_tabEnabled():Bool { return _enabled && rawTabEnabled; } }