Skip to content

Commit 6b65708

Browse files
author
jef
committed
re-enable opening projects by drag&drop
git-svn-id: http://svn.osgeo.org/qgis/trunk@13289 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent c5b9aa5 commit 6b65708

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/app/qgisapp.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -587,6 +587,7 @@ void QgisApp::dropEvent( QDropEvent *event )
587587
if ( fi.completeSuffix() == "qgs" )
588588
{
589589
QgsDebugMsg( "Opening project " + fileName );
590+
openProject( fileName );
590591
}
591592
else
592593
{
@@ -3588,7 +3589,7 @@ void QgisApp::saveMapAsImage()
35883589
continue;
35893590

35903591
QString myFilter = createFileFilter_( myFormat + " format", "*." + myFormat );
3591-
if( !myFilters.isEmpty() )
3592+
if ( !myFilters.isEmpty() )
35923593
myFilters += ";;";
35933594
myFilters += myFilter;
35943595
myFilterMap[myFilter] = myFormat;

0 commit comments

Comments
 (0)