Skip to content

Commit

Permalink
Show default network cache path in options dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn committed Jul 11, 2016
1 parent 6e11084 commit 1ef6e68
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/app/qgsoptions.cpp
Expand Up @@ -312,6 +312,7 @@ QgsOptions::QgsOptions( QWidget *parent, Qt::WindowFlags fl ) :

// cache settings
mCacheDirectory->setText( mSettings->value( "cache/directory" ).toString() );
mCacheDirectory->setPlaceholderText( QDir( QgsApplication::qgisSettingsDirPath() ).canonicalPath() + QDir::separator() + "cache" );
mCacheSize->setMinimum( 0 );
mCacheSize->setMaximum( std::numeric_limits<int>::max() );
mCacheSize->setSingleStep( 1024 );
Expand Down

0 comments on commit 1ef6e68

Please sign in to comment.