Skip to content

Commit 1ef6e68

Browse files
committedJul 11, 2016
Show default network cache path in options dialog
1 parent 6e11084 commit 1ef6e68

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed
 

‎src/app/qgsoptions.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -312,6 +312,7 @@ QgsOptions::QgsOptions( QWidget *parent, Qt::WindowFlags fl ) :
312312

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

0 commit comments

Comments
 (0)
Please sign in to comment.