Deobfuscation level GUI selection fixed

This commit is contained in:
Jindra Petřík
2015-07-12 16:49:16 +02:00
parent 904d1f64f1
commit 5462342e3a

View File

@@ -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 {