Skip to content

Commit

Permalink
Keep checkbox in sync if enableBackbuffer option not yet used
Browse files Browse the repository at this point in the history
  • Loading branch information
mhugent committed Aug 9, 2012
1 parent 55d332b commit 487879d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/qgsoptions.cpp
Expand Up @@ -233,7 +233,7 @@ QgsOptions::QgsOptions( QWidget *parent, Qt::WFlags fl ) :
// Set the enable backbuffer state for X11 (linux) systems only
// TODO: remove this when threading is implemented
#ifdef Q_WS_X11
chkEnableBackbuffer->setChecked( settings.value( "/Map/enableBackbuffer" ).toBool() );
chkEnableBackbuffer->setChecked( settings.value( "/Map/enableBackbuffer", 1 ).toBool() );
toggleEnableBackbuffer( chkEnableBackbuffer->checkState() );
#elif Q_WS_MAC
chkEnableBackbuffer->setChecked( true );
Expand Down

0 comments on commit 487879d

Please sign in to comment.