From be20e430e289cc6b03e3a69f94745d91709b5f3b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jindra=20Pet=C5=99=C3=ADk?= Date: Fri, 29 Sep 2023 19:25:14 +0200 Subject: [PATCH] ABC Explorer - SWF name in title --- src/com/jpexs/decompiler/flash/gui/abc/ABCExplorerDialog.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/jpexs/decompiler/flash/gui/abc/ABCExplorerDialog.java b/src/com/jpexs/decompiler/flash/gui/abc/ABCExplorerDialog.java index e1d870637..98c641241 100644 --- a/src/com/jpexs/decompiler/flash/gui/abc/ABCExplorerDialog.java +++ b/src/com/jpexs/decompiler/flash/gui/abc/ABCExplorerDialog.java @@ -138,7 +138,7 @@ public class ABCExplorerDialog extends AppDialog { abcComboBox.setSelectedIndex(selectedIndex); } setSize(800, 600); - setTitle(translate("title")); + setTitle(translate("title") + " - " + swf.getTitleOrShortFileName()); View.setWindowIcon(this); View.centerScreen(this); }