Skip to content

Commit 48c320b

Browse files
authoredNov 16, 2017
Merge pull request #5649 from rouault/settings_main_canvas_preview_jobs
Add a setting to be able to disable preview jobs in main canvas
2 parents d590e98 + ca8d82f commit 48c320b

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed
 

‎src/app/qgisapp.cpp

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -717,7 +717,13 @@ QgisApp::QgisApp( QSplashScreen *splash, bool restorePlugins, bool skipVersionCh
717717
connect( mMapCanvas, &QgsMapCanvas::messageEmitted, this, &QgisApp::displayMessage );
718718
mMapCanvas->setWhatsThis( tr( "Map canvas. This is where raster and vector "
719719
"layers are displayed when added to the map" ) );
720-
mMapCanvas->setPreviewJobsEnabled( true );
720+
721+
if ( settings.value( QStringLiteral( "qgis/main_canvas_preview_jobs" ) ).isNull() )
722+
{
723+
// So that it appears in advanced settings
724+
settings.setValue( QStringLiteral( "qgis/main_canvas_preview_jobs" ), true );
725+
}
726+
mMapCanvas->setPreviewJobsEnabled( settings.value( QStringLiteral( "qgis/main_canvas_preview_jobs" ), true ).toBool() );
721727

722728
// set canvas color right away
723729
int myRed = settings.value( QStringLiteral( "qgis/default_canvas_color_red" ), 255 ).toInt();

0 commit comments

Comments
 (0)
Please sign in to comment.