From d505fe2f693f501a473ac80bd9d3b2d1bde96545 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jindra=20Pet=C5=99=C3=ADk?= Date: Tue, 29 Oct 2024 20:08:18 +0100 Subject: [PATCH] Enabling Simple editor UI for dev branch again. --- CHANGELOG.md | 5 +++++ src/com/jpexs/decompiler/flash/easygui/EasyPanel.java | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9f72fa7a0..efa4532d3 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.3] - 2024-10-29 ### Fixed diff --git a/src/com/jpexs/decompiler/flash/easygui/EasyPanel.java b/src/com/jpexs/decompiler/flash/easygui/EasyPanel.java index f8cdac55c..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 final boolean EASY_AVAILABLE = false; + public static final boolean EASY_AVAILABLE = true; private TabSwitcher tabSwitcher; private EasySwfPanel easySwfPanel;