Skip to content

Commit a16535a

Browse files
committedJan 22, 2016
Merge pull request #2711 from SebDieBln/HideWelcomeOnLoadProject
[Bugfix] Always hide the welcome screen when the first project is loaded
2 parents 68cbb44 + a453f72 commit a16535a

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed
 

‎src/app/qgisapp.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4143,6 +4143,7 @@ void QgisApp::fileOpenAfterLaunch()
41434143
if ( mProjOpen == 0 ) // welcome page
41444144
{
41454145
connect( this, SIGNAL( newProject() ), this, SLOT( showMapCanvas() ) );
4146+
connect( this, SIGNAL( projectRead() ), this, SLOT( showMapCanvas() ) );
41464147
return;
41474148
}
41484149
if ( mProjOpen == 1 && !mRecentProjects.isEmpty() ) // most recent project

0 commit comments

Comments
 (0)
Please sign in to comment.