From 640f046c1c18fb3f3074e54a5a13946ff9797c3d Mon Sep 17 00:00:00 2001 From: Peter Petrik Date: Thu, 17 Sep 2020 16:33:11 +0200 Subject: [PATCH] hide splash screen when loading the project --- src/app/main.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/app/main.cpp b/src/app/main.cpp index ef092b0f28e6..1bf64153c8fa 100644 --- a/src/app/main.cpp +++ b/src/app/main.cpp @@ -1394,6 +1394,9 @@ int main( int argc, char *argv[] ) ///////////////////////////////////////////////////////////////////// if ( ! sProjectFileName.isEmpty() ) { + // in case the project contains broken layers, interactive + // "Handle Bad Layers" is displayed that could be blocked by splash screen + mypSplash->hide(); qgis->openProject( sProjectFileName ); }