We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
2 parents 7cb79c4 + b440367 commit 00c8196Copy full SHA for 00c8196
src/app/qgsvectorlayerproperties.cpp
@@ -408,6 +408,13 @@ void QgsVectorLayerProperties::syncToLayer( void )
408
mSimplifyDrawingAtProvider->setChecked( !simplifyMethod.forceLocalOptimization() );
409
mSimplifyDrawingAtProvider->setEnabled( mSimplifyDrawingGroupBox->isChecked() );
410
}
411
+
412
+ // disable simplification for point layers, now it is not implemented
413
+ if ( layer->geometryType() == QGis::Point )
414
+ {
415
+ mOptionsStackedWidget->removeWidget( mOptsPage_Rendering );
416
+ mSimplifyDrawingGroupBox->setChecked( false );
417
+ }
418
419
// load appropriate symbology page (V1 or V2)
420
updateSymbologyPage();
0 commit comments