small fixes

This commit is contained in:
honfika@gmail.com
2014-12-01 00:13:48 +01:00
parent 9125a5abd4
commit 77b8ef808a
10 changed files with 31 additions and 22 deletions

View File

@@ -2195,9 +2195,9 @@ public final class MainPanel extends JPanel implements ActionListener, TreeSelec
try {
get();
} catch (CancellationException ex) {
getABCPanel().decompiledTextArea.setText("//" + AppStrings.translate("work.canceled"));
getABCPanel().decompiledTextArea.setText("// " + AppStrings.translate("work.canceled"));
} catch (Exception ex) {
getABCPanel().decompiledTextArea.setText("//" + AppStrings.translate("decompilationError") + ": " + ex);
getABCPanel().decompiledTextArea.setText("// " + AppStrings.translate("decompilationError") + ": " + ex);
}
}
});