File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -394,7 +394,7 @@ void QgsVectorLayerProperties::syncToLayer( void )
394
394
395
395
// get simplify drawing configuration
396
396
mSimplifyDrawingGroupBox ->setChecked ( layer->simplifyDrawing () );
397
- mSimplifyDrawingSlider ->setValue ( (int )(10 .0f * (layer->simplifyDrawingTol ()-1 )) );
397
+ mSimplifyDrawingSlider ->setValue ( (int )(5 .0f * (layer->simplifyDrawingTol ()-1 )) );
398
398
399
399
// load appropriate symbology page (V1 or V2)
400
400
updateSymbologyPage ();
@@ -535,7 +535,7 @@ void QgsVectorLayerProperties::apply()
535
535
536
536
// layer simplify drawing configuration
537
537
layer->setSimplifyDrawing ( mSimplifyDrawingGroupBox ->isChecked () );
538
- layer->setSimplifyDrawingTol ( 1 .0f + 0 .1f *mSimplifyDrawingSlider ->value () );
538
+ layer->setSimplifyDrawingTol ( 1 .0f + 0 .2f *mSimplifyDrawingSlider ->value () );
539
539
540
540
// update symbology
541
541
emit refreshLegend ( layer->id (), QgsLegendItem::DontChange );
You can’t perform that action at this time.
0 commit comments