We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent c5b9aa5 commit 6b65708Copy full SHA for 6b65708
src/app/qgisapp.cpp
@@ -587,6 +587,7 @@ void QgisApp::dropEvent( QDropEvent *event )
587
if ( fi.completeSuffix() == "qgs" )
588
{
589
QgsDebugMsg( "Opening project " + fileName );
590
+ openProject( fileName );
591
}
592
else
593
@@ -3588,7 +3589,7 @@ void QgisApp::saveMapAsImage()
3588
3589
continue;
3590
3591
QString myFilter = createFileFilter_( myFormat + " format", "*." + myFormat );
- if( !myFilters.isEmpty() )
3592
+ if ( !myFilters.isEmpty() )
3593
myFilters += ";;";
3594
myFilters += myFilter;
3595
myFilterMap[myFilter] = myFormat;
0 commit comments