### Eclipse Workspace Patch 1.0 #P qgis Index: src/app/qgisapp.cpp =================================================================== --- src/app/qgisapp.cpp (revision 13515) +++ src/app/qgisapp.cpp (working copy) @@ -1220,6 +1220,13 @@ mPythonUtils->getError( className, text ); QMessageBox::critical( this, tr( "Error" ), tr( "Failed to open Python console:" ) + "\n" + className + ": " + text ); } + +// Mac OS X: Add Python Dialog to Window Menu +#ifdef Q_WS_MAC + addWindow( mActionShowPythonDialog ); + +#endif + } void QgisApp::createActionGroups()