From eebf0021ffba281bb69f5b60b5fa32fc7b892cf7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jindra=20Pet=C5=99=C3=ADk?= Date: Mon, 7 Jul 2025 18:14:25 +0200 Subject: [PATCH] Freeing texts --- .../easygui/properties/panels/InstancePropertiesPanel.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/com/jpexs/decompiler/flash/easygui/properties/panels/InstancePropertiesPanel.java b/src/com/jpexs/decompiler/flash/easygui/properties/panels/InstancePropertiesPanel.java index 39fd23e0d..24a5d9088 100644 --- a/src/com/jpexs/decompiler/flash/easygui/properties/panels/InstancePropertiesPanel.java +++ b/src/com/jpexs/decompiler/flash/easygui/properties/panels/InstancePropertiesPanel.java @@ -1081,9 +1081,7 @@ public class InstancePropertiesPanel extends AbstractPropertiesPanel { filtersTable.setFilters(null); } - if (text != null) { - textPanel.setText(text); - } + textPanel.setText(text); updating = false; revalidate(); }