Skip to content

Commit

Permalink
Octovis: fix issue with saving not showing any dialog (OctoMap#414)
Browse files Browse the repository at this point in the history
  • Loading branch information
whoenig authored and c-andy-martin committed May 30, 2024
1 parent 985e60c commit d6bb1bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion octovis/src/ViewerGui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -716,7 +716,7 @@ void ViewerGui::on_actionSave_file_triggered(){
}

QString filename = QFileDialog::getSaveFileName(this, tr("Save octree file"),
"", tr("Full OcTree (*.ot);;Bonsai Tree file (*.bt);;"));
"", tr("Full OcTree (*.ot);;Bonsai Tree file (*.bt);;"), 0, QFileDialog::DontUseNativeDialog);

if (filename != ""){
QApplication::setOverrideCursor(Qt::WaitCursor);
Expand Down

0 comments on commit d6bb1bf

Please sign in to comment.