Skip to content

Commit

Permalink
fix url exclusion changes
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@13432 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed May 6, 2010
1 parent 8aba0ba commit 13caae4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/qgsoptions.cpp
Expand Up @@ -454,8 +454,6 @@ void QgsOptions::saveOptions()
settings.setValue( "cache/directory", mCacheDirectory->text() );
settings.setValue( "cache/size", QVariant::fromValue( mCacheSize->value()*1024L ) );

QgisApp::instance()->namUpdate();

//url to exclude from proxys
QString proxyExcludeString;
for ( int i = 0; i < mExcludeUrlListWidget->count(); ++i )
Expand All @@ -468,6 +466,8 @@ void QgsOptions::saveOptions()
}
settings.setValue( "proxy/proxyExcludedUrls", proxyExcludeString );

QgisApp::instance()->namUpdate();

//wms search url
settings.setValue( "/qgis/WMSSearchUrl", leWmsSearch->text() );

Expand Down

0 comments on commit 13caae4

Please sign in to comment.