From 5462342e3a9df094379debcf6145012e9db7ed50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jindra=20Pet=C5=99=C3=ADk?= Date: Sun, 12 Jul 2015 16:49:16 +0200 Subject: [PATCH] Deobfuscation level GUI selection fixed --- src/com/jpexs/decompiler/flash/gui/MainPanel.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/jpexs/decompiler/flash/gui/MainPanel.java b/src/com/jpexs/decompiler/flash/gui/MainPanel.java index 0f392f8d2..0a32d7601 100644 --- a/src/com/jpexs/decompiler/flash/gui/MainPanel.java +++ b/src/com/jpexs/decompiler/flash/gui/MainPanel.java @@ -2295,8 +2295,8 @@ public final class MainPanel extends JPanel implements TreeSelectionListener, Se public void deobfuscate() { DeobfuscationDialog deobfuscationDialog = new DeobfuscationDialog(); - DeobfuscationLevel level = DeobfuscationLevel.getByLevel(deobfuscationDialog.codeProcessingLevel.getValue()); if (deobfuscationDialog.showDialog() == AppDialog.OK_OPTION) { + DeobfuscationLevel level = DeobfuscationLevel.getByLevel(deobfuscationDialog.codeProcessingLevel.getValue()); new CancellableWorker() { @Override protected Void doInBackground() throws Exception {