Skip to content

Commit 3df2e9d

Browse files
author
jef
committedMay 6, 2010
fix url exclusion changes
git-svn-id: http://svn.osgeo.org/qgis/trunk@13432 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 98ce9b6 commit 3df2e9d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/app/qgsoptions.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -454,8 +454,6 @@ void QgsOptions::saveOptions()
454454
settings.setValue( "cache/directory", mCacheDirectory->text() );
455455
settings.setValue( "cache/size", QVariant::fromValue( mCacheSize->value()*1024L ) );
456456

457-
QgisApp::instance()->namUpdate();
458-
459457
//url to exclude from proxys
460458
QString proxyExcludeString;
461459
for ( int i = 0; i < mExcludeUrlListWidget->count(); ++i )
@@ -468,6 +466,8 @@ void QgsOptions::saveOptions()
468466
}
469467
settings.setValue( "proxy/proxyExcludedUrls", proxyExcludeString );
470468

469+
QgisApp::instance()->namUpdate();
470+
471471
//wms search url
472472
settings.setValue( "/qgis/WMSSearchUrl", leWmsSearch->text() );
473473

0 commit comments

Comments
 (0)
Please sign in to comment.