From da96842c54c3ba18a99f9b72dea357a27e84f566 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jindra=20Pet=C5=99=C3=ADk?= Date: Sat, 4 Feb 2023 09:07:47 +0100 Subject: [PATCH] Fixed #1960 Hide tag tree root handles as it was in previous versions --- CHANGELOG.md | 3 +++ src/com/jpexs/decompiler/flash/gui/tagtree/TagTree.java | 3 +-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2c01c3e96..6a9632800 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ All notable changes to this project will be documented in this file. ## [Unreleased] +### Fixed +- [#1960] Hide tag tree root handles as it was in previous versions ## [18.3.4] - 2023-01-30 ### Added @@ -2931,6 +2933,7 @@ All notable changes to this project will be documented in this file. [alpha 9]: https://github.com/jindrapetrik/jpexs-decompiler/compare/alpha8...alpha9 [alpha 8]: https://github.com/jindrapetrik/jpexs-decompiler/compare/alpha7...alpha8 [alpha 7]: https://github.com/jindrapetrik/jpexs-decompiler/releases/tag/alpha7 +[#1960]: https://www.free-decompiler.com/flash/issues/1960 [#1029]: https://www.free-decompiler.com/flash/issues/1029 [#1948]: https://www.free-decompiler.com/flash/issues/1948 [#1941]: https://www.free-decompiler.com/flash/issues/1941 diff --git a/src/com/jpexs/decompiler/flash/gui/tagtree/TagTree.java b/src/com/jpexs/decompiler/flash/gui/tagtree/TagTree.java index 3e05de496..274eb43db 100644 --- a/src/com/jpexs/decompiler/flash/gui/tagtree/TagTree.java +++ b/src/com/jpexs/decompiler/flash/gui/tagtree/TagTree.java @@ -238,8 +238,7 @@ public class TagTree extends AbstractTagTree { public TagTree(TagTreeModel treeModel, MainPanel mainPanel) { super(treeModel, mainPanel); - setCellRenderer(new TagTreeCellRenderer()); - setShowsRootHandles(true); + setCellRenderer(new TagTreeCellRenderer()); } public static List getSwfFolderItemNestedTagIds(String folderName, boolean gfx) {