Skip to content

Commit

Permalink
hide console when python support is not available
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Feb 2, 2015
1 parent 2c820bb commit 932baa9
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/app/qgisapp.cpp
Expand Up @@ -715,6 +715,10 @@ QgisApp::QgisApp( QSplashScreen *splash, bool restorePlugins, QWidget * parent,
// enable Python in the Plugin Manager and pass the PythonUtils to it
mPluginManager -> setPythonUtils( mPythonUtils );
}
else
{
mActionShowPythonDialog->setVisible( false );
}

mSplash->showMessage( tr( "Initializing file filters" ), Qt::AlignHCenter | Qt::AlignBottom );
qApp->processEvents();
Expand Down

0 comments on commit 932baa9

Please sign in to comment.