Restored Resource Exporting
This commit is contained in:
parent
f1dc61f780
commit
0325c2008e
7 changed files with 8 additions and 8 deletions
|
@ -83,7 +83,7 @@ public class GlobalHotKeys
|
||||||
|
|
||||||
Thread resourceExport = new Thread(() ->
|
Thread resourceExport = new Thread(() ->
|
||||||
{
|
{
|
||||||
if (BytecodeViewer.autoCompileSuccessful())
|
if (!BytecodeViewer.autoCompileSuccessful())
|
||||||
return;
|
return;
|
||||||
|
|
||||||
JFileChooser fc = new FileChooser(Configuration.getLastDirectory(),
|
JFileChooser fc = new FileChooser(Configuration.getLastDirectory(),
|
||||||
|
|
|
@ -125,7 +125,7 @@ public class PluginWriter extends JFrame
|
||||||
{
|
{
|
||||||
Thread exportThread = new Thread(() ->
|
Thread exportThread = new Thread(() ->
|
||||||
{
|
{
|
||||||
if (BytecodeViewer.autoCompileSuccessful())
|
if (!BytecodeViewer.autoCompileSuccessful())
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if(savePath == null)
|
if(savePath == null)
|
||||||
|
|
|
@ -31,7 +31,7 @@ public class ResourceDecompiling
|
||||||
|
|
||||||
Thread decompileThread = new Thread(() ->
|
Thread decompileThread = new Thread(() ->
|
||||||
{
|
{
|
||||||
if (BytecodeViewer.autoCompileSuccessful())
|
if (!BytecodeViewer.autoCompileSuccessful())
|
||||||
return;
|
return;
|
||||||
|
|
||||||
JFileChooser fc = new FileChooser(Configuration.getLastDirectory(),
|
JFileChooser fc = new FileChooser(Configuration.getLastDirectory(),
|
||||||
|
@ -188,7 +188,7 @@ public class ResourceDecompiling
|
||||||
|
|
||||||
Thread decompileThread = new Thread(() ->
|
Thread decompileThread = new Thread(() ->
|
||||||
{
|
{
|
||||||
if (BytecodeViewer.autoCompileSuccessful())
|
if (!BytecodeViewer.autoCompileSuccessful())
|
||||||
return;
|
return;
|
||||||
|
|
||||||
final ClassNode cn = BytecodeViewer.getCurrentlyOpenedClassNode();
|
final ClassNode cn = BytecodeViewer.getCurrentlyOpenedClassNode();
|
||||||
|
|
|
@ -65,7 +65,7 @@ public class APKExport implements Exporter
|
||||||
|
|
||||||
Thread exportThread = new Thread(() ->
|
Thread exportThread = new Thread(() ->
|
||||||
{
|
{
|
||||||
if (BytecodeViewer.autoCompileSuccessful())
|
if (!BytecodeViewer.autoCompileSuccessful())
|
||||||
return;
|
return;
|
||||||
|
|
||||||
JFileChooser fc = new FileChooser(Configuration.getLastDirectory(),
|
JFileChooser fc = new FileChooser(Configuration.getLastDirectory(),
|
||||||
|
|
|
@ -30,7 +30,7 @@ public class DexExport implements Exporter
|
||||||
|
|
||||||
Thread exportThread = new Thread(() ->
|
Thread exportThread = new Thread(() ->
|
||||||
{
|
{
|
||||||
if (BytecodeViewer.autoCompileSuccessful())
|
if (!BytecodeViewer.autoCompileSuccessful())
|
||||||
return;
|
return;
|
||||||
|
|
||||||
JFileChooser fc = new FileChooser(Configuration.getLastDirectory(),
|
JFileChooser fc = new FileChooser(Configuration.getLastDirectory(),
|
||||||
|
|
|
@ -24,7 +24,7 @@ public class RunnableJarExporter implements Exporter
|
||||||
|
|
||||||
Thread exportThread = new Thread(() ->
|
Thread exportThread = new Thread(() ->
|
||||||
{
|
{
|
||||||
if (BytecodeViewer.autoCompileSuccessful())
|
if (!BytecodeViewer.autoCompileSuccessful())
|
||||||
return;
|
return;
|
||||||
|
|
||||||
JFileChooser fc = new FileChooser(Configuration.getLastDirectory(),
|
JFileChooser fc = new FileChooser(Configuration.getLastDirectory(),
|
||||||
|
|
|
@ -24,7 +24,7 @@ public class ZipExport implements Exporter
|
||||||
|
|
||||||
Thread exportThread = new Thread(() ->
|
Thread exportThread = new Thread(() ->
|
||||||
{
|
{
|
||||||
if (BytecodeViewer.autoCompileSuccessful())
|
if (!BytecodeViewer.autoCompileSuccessful())
|
||||||
return;
|
return;
|
||||||
|
|
||||||
JFileChooser fc = new FileChooser(Configuration.getLastDirectory(),
|
JFileChooser fc = new FileChooser(Configuration.getLastDirectory(),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue