Skip to content

Commit

Permalink
hot fix for freezing problem
Browse files Browse the repository at this point in the history
  • Loading branch information
pollend committed Aug 30, 2018
1 parent b1143e1 commit a7a1d64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion forms/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ void MainWindow::stopCapture()
stream << this->ui->description->toPlainText();
}

QString fileName = QFileDialog::getSaveFileName(this,tr("Save Data"),"",tr("All Files (*)"));
QString fileName = QFileDialog::getSaveFileName(this,tr("Save Data"),"",tr("All Files (*)"), nullptr, QFileDialog::DontUseNativeDialog);
if (fileName.isEmpty())
return;
else {
Expand Down

0 comments on commit a7a1d64

Please sign in to comment.