Restored Resource Exporting

This commit is contained in:
Konloch 2021-07-11 06:55:30 -07:00
parent f1dc61f780
commit 0325c2008e
7 changed files with 8 additions and 8 deletions

View file

@ -83,7 +83,7 @@ public class GlobalHotKeys
Thread resourceExport = new Thread(() ->
{
if (BytecodeViewer.autoCompileSuccessful())
if (!BytecodeViewer.autoCompileSuccessful())
return;
JFileChooser fc = new FileChooser(Configuration.getLastDirectory(),

View file

@ -125,7 +125,7 @@ public class PluginWriter extends JFrame
{
Thread exportThread = new Thread(() ->
{
if (BytecodeViewer.autoCompileSuccessful())
if (!BytecodeViewer.autoCompileSuccessful())
return;
if(savePath == null)

View file

@ -31,7 +31,7 @@ public class ResourceDecompiling
Thread decompileThread = new Thread(() ->
{
if (BytecodeViewer.autoCompileSuccessful())
if (!BytecodeViewer.autoCompileSuccessful())
return;
JFileChooser fc = new FileChooser(Configuration.getLastDirectory(),
@ -188,7 +188,7 @@ public class ResourceDecompiling
Thread decompileThread = new Thread(() ->
{
if (BytecodeViewer.autoCompileSuccessful())
if (!BytecodeViewer.autoCompileSuccessful())
return;
final ClassNode cn = BytecodeViewer.getCurrentlyOpenedClassNode();

View file

@ -65,7 +65,7 @@ public class APKExport implements Exporter
Thread exportThread = new Thread(() ->
{
if (BytecodeViewer.autoCompileSuccessful())
if (!BytecodeViewer.autoCompileSuccessful())
return;
JFileChooser fc = new FileChooser(Configuration.getLastDirectory(),

View file

@ -30,7 +30,7 @@ public class DexExport implements Exporter
Thread exportThread = new Thread(() ->
{
if (BytecodeViewer.autoCompileSuccessful())
if (!BytecodeViewer.autoCompileSuccessful())
return;
JFileChooser fc = new FileChooser(Configuration.getLastDirectory(),

View file

@ -24,7 +24,7 @@ public class RunnableJarExporter implements Exporter
Thread exportThread = new Thread(() ->
{
if (BytecodeViewer.autoCompileSuccessful())
if (!BytecodeViewer.autoCompileSuccessful())
return;
JFileChooser fc = new FileChooser(Configuration.getLastDirectory(),

View file

@ -24,7 +24,7 @@ public class ZipExport implements Exporter
Thread exportThread = new Thread(() ->
{
if (BytecodeViewer.autoCompileSuccessful())
if (!BytecodeViewer.autoCompileSuccessful())
return;
JFileChooser fc = new FileChooser(Configuration.getLastDirectory(),