@@ -590,6 +590,7 @@ QgsOptions::QgsOptions( QWidget *parent, Qt::WindowFlags fl ) :
590
590
mLegendGroupsBoldChkBx ->setChecked ( mSettings ->value ( " /qgis/legendGroupsBold" , false ).toBool () );
591
591
cbxHideSplash->setChecked ( mSettings ->value ( " /qgis/hideSplash" , false ).toBool () );
592
592
cbxShowTips->setChecked ( mSettings ->value ( QString ( " /qgis/showTips%1" ).arg ( QGis::QGIS_VERSION_INT / 100 ), true ).toBool () );
593
+ cbxCheckVersion->setChecked ( mSettings ->value ( " /qgis/checkVersion" , true ).toBool () );
593
594
cbxAttributeTableDocked->setChecked ( mSettings ->value ( " /qgis/dockAttributeTable" , false ).toBool () );
594
595
cbxSnappingOptionsDocked->setChecked ( mSettings ->value ( " /qgis/dockSnapping" , false ).toBool () );
595
596
cbxAddPostgisDC->setChecked ( mSettings ->value ( " /qgis/addPostgisDC" , false ).toBool () );
@@ -1131,6 +1132,7 @@ void QgsOptions::saveOptions()
1131
1132
mSettings ->setValue ( " /qgis/legendGroupsBold" , mLegendGroupsBoldChkBx ->isChecked () );
1132
1133
mSettings ->setValue ( " /qgis/hideSplash" , cbxHideSplash->isChecked () );
1133
1134
mSettings ->setValue ( QString ( " /qgis/showTips%1" ).arg ( QGis::QGIS_VERSION_INT / 100 ), cbxShowTips->isChecked () );
1135
+ mSettings ->setValue ( " /qgis/checkVersion" , cbxCheckVersion->isChecked () );
1134
1136
mSettings ->setValue ( " /qgis/dockAttributeTable" , cbxAttributeTableDocked->isChecked () );
1135
1137
mSettings ->setValue ( " /qgis/attributeTableBehaviour" , cmbAttrTableBehaviour->itemData ( cmbAttrTableBehaviour->currentIndex () ) );
1136
1138
mSettings ->setValue ( " /qgis/attributeTableRowCache" , spinBoxAttrTableRowCache->value () );
0 commit comments