From 354680d125c9ea192f1614d5769dbce09d82d413 Mon Sep 17 00:00:00 2001 From: GriffinR Date: Wed, 2 Oct 2024 02:44:33 -0400 Subject: [PATCH] Reduce time minimum for stitch image progress bar --- src/ui/mapimageexporter.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ui/mapimageexporter.cpp b/src/ui/mapimageexporter.cpp index e9c3e18c..b06bb415 100644 --- a/src/ui/mapimageexporter.cpp +++ b/src/ui/mapimageexporter.cpp @@ -377,6 +377,7 @@ void MapImageExporter::updatePreview() { progress.setAutoClose(true); progress.setWindowModality(Qt::WindowModal); progress.setModal(true); + progress.setMinimumDuration(1000); this->preview = getStitchedImage(&progress, this->showBorder); progress.close(); } else {