From 2c7a7d473fdd768efe4dcc06d4fcdf4ce0de23f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Du=C5=A1an=20Poizl?= Date: Mon, 26 Aug 2024 10:19:48 +0200 Subject: [PATCH] Fix output path browse dialog path --- batchprocessing.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/batchprocessing.cpp b/batchprocessing.cpp index f0aa0d3..88044ef 100644 --- a/batchprocessing.cpp +++ b/batchprocessing.cpp @@ -172,7 +172,7 @@ void BatchProcessing::removeAllPaths() void BatchProcessing::browse() { - QString output = QFileDialog::getExistingDirectory(this, tr("Select output directory"), "/home/nou/Obrázky"); + QString output = QFileDialog::getExistingDirectory(this, tr("Select output directory"), _ui->outputPath->text()); if(!output.isEmpty()) _ui->outputPath->setText(output); }