Skip to content
Permalink
Browse files
Merge pull request #7498 from Z1ni/compress-cancel-correctly
Qt/GameList: Cancel ISO compression when the user cancels the save dialog
  • Loading branch information
Tilka committed Oct 14, 2018
2 parents b5d855c + d7640f5 commit dace56c
Showing 1 changed file with 3 additions and 0 deletions.
@@ -496,6 +496,9 @@ void GameList::CompressISO(bool decompress)
.append(decompress ? QStringLiteral(".gcm") : QStringLiteral(".gcz")),
decompress ? tr("Uncompressed GC/Wii images (*.iso *.gcm)") :
tr("Compressed GC/Wii images (*.gcz)"));

if (dst_path.isEmpty())
return;
}

for (const auto& file : files)

0 comments on commit dace56c

Please sign in to comment.