Skip to content

Commit 90cda1e

Browse files
author
brushtyler
committedJul 24, 2010
changed wrong key used retrieving from settings the last used image filter, to fix #2901
git-svn-id: http://svn.osgeo.org/qgis/trunk@13957 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent e357842 commit 90cda1e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/app/qgisapp.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3462,7 +3462,7 @@ void QgisApp::saveMapAsImage()
34623462

34633463
//find out the last used filter
34643464
QSettings myQSettings; // where we keep last used filter in persistent state
3465-
QString myLastUsedFilter = myQSettings.value( "/UI/saveAsImageFilter" ).toString();
3465+
QString myLastUsedFilter = myQSettings.value( "/UI/lastSaveAsImageFilter" ).toString();
34663466
QString myLastUsedDir = myQSettings.value( "/UI/lastSaveAsImageDir", "." ).toString();
34673467

34683468
// get a list of supported output image types

0 commit comments

Comments
 (0)
Please sign in to comment.