Skip to content

Commit

Permalink
Fix decompile worker; add screenshot to resources.
Browse files Browse the repository at this point in the history
  • Loading branch information
vaibhavpandeyvpz committed Apr 25, 2019
1 parent e69b94f commit bbda8db
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 0 deletions.
Binary file added resources/screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added resources/screenshot.psd
Binary file not shown.
1 change: 1 addition & 0 deletions sources/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -373,6 +373,7 @@ void MainWindow::handleActionApk()
connect(worker, &ApkDecompileWorker::decompileFailed, this, &MainWindow::handleDecompileFailed);
connect(worker, &ApkDecompileWorker::decompileFinished, this, &MainWindow::handleDecompileFinished);
connect(worker, &ApkDecompileWorker::decompileProgress, this, &MainWindow::handleDecompileProgress);
connect(thread, &QThread::started, worker, &ApkDecompileWorker::decompile);
connect(worker, &ApkDecompileWorker::finished, thread, &QThread::quit);
connect(worker, &ApkDecompileWorker::finished, worker, &QObject::deleteLater);
connect(thread, &QThread::finished, thread, &QObject::deleteLater);
Expand Down

0 comments on commit bbda8db

Please sign in to comment.