Fix crash when no files are selected

This commit is contained in:
xperia64
2019-01-19 22:14:19 -05:00
committed by annomatg
parent 576ff9b3f0
commit 476b8300e8

View File

@@ -1686,12 +1686,12 @@ void GMainWindow::OnCaptureScreenshot() {
tr("PNG Image (*.png)"));
png_dialog.setAcceptMode(QFileDialog::AcceptSave);
png_dialog.setDefaultSuffix("png");
png_dialog.exec();
const QString path = png_dialog.selectedFiles().first();
if (!path.isEmpty()) {
UISettings::values.screenshot_path = QFileInfo(path).path();
render_window->CaptureScreenshot(UISettings::values.screenshot_resolution_factor, path);
if (png_dialog.exec()) {
const QString path = png_dialog.selectedFiles().first();
if (!path.isEmpty()) {
UISettings::values.screenshot_path = QFileInfo(path).path();
render_window->CaptureScreenshot(UISettings::values.screenshot_resolution_factor, path);
}
}
OnStartGame();
}