change the path the queue exports the maps to
| 655 | |
| 656 | //change the path the queue exports the maps to |
| 657 | void MainWindow::changeOutputPathQueueDialog() { |
| 658 | QUrl startUrl = QDir::homePath(); |
| 659 | if(exportPath.isValid()) |
| 660 | startUrl = exportPath; |
| 661 | |
| 662 | QUrl path = QFileDialog::getExistingDirectoryUrl(this, |
| 663 | "Choose Export Folder", |
| 664 | startUrl); |
| 665 | setExportPath(path); |
| 666 | } |
| 667 | |
| 668 | void MainWindow::editOutputPathQueue() { |
| 669 | QString rawPath = ui->lineEdit_outputPath->text(); |
nothing calls this directly
no outgoing calls
no test coverage detected