diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a04458b9..d2074f691 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ All notable changes to this project will be documented in this file. ## [Unreleased] +### Added +- Simple editor view - new simplified UI based on timeline view, + which resembles Flash Pro UI. Easier moving objects, + resizing, adding frames, adding objects to stage. Instance property editation. + Undo / redo feature. WIP ## [21.1.2] - 2024-10-29 ### Added diff --git a/src/com/jpexs/decompiler/flash/easygui/EasyPanel.java b/src/com/jpexs/decompiler/flash/easygui/EasyPanel.java index 7cb75fe82..f9846852e 100644 --- a/src/com/jpexs/decompiler/flash/easygui/EasyPanel.java +++ b/src/com/jpexs/decompiler/flash/easygui/EasyPanel.java @@ -33,7 +33,7 @@ public class EasyPanel extends JPanel { * TODO: switch to true when Easy mode is released. * I think it's not production ready yet. */ - public static boolean EASY_AVAILABLE = false; + public static final boolean EASY_AVAILABLE = true; private TabSwitcher tabSwitcher; private EasySwfPanel easySwfPanel;