File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 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 )
394394
395395 // get simplify drawing configuration
396396 mSimplifyDrawingGroupBox ->setChecked ( layer->simplifyDrawing () );
397- mSimplifyDrawingSlider ->setValue ( (int )(10 .0f * (layer->simplifyDrawingTol ()-1 )) );
397+ mSimplifyDrawingSlider ->setValue ( (int )(5 .0f * (layer->simplifyDrawingTol ()-1 )) );
398398
399399 // load appropriate symbology page (V1 or V2)
400400 updateSymbologyPage ();
@@ -535,7 +535,7 @@ void QgsVectorLayerProperties::apply()
535535
536536 // layer simplify drawing configuration
537537 layer->setSimplifyDrawing ( mSimplifyDrawingGroupBox ->isChecked () );
538- layer->setSimplifyDrawingTol ( 1 .0f + 0 .1f *mSimplifyDrawingSlider ->value () );
538+ layer->setSimplifyDrawingTol ( 1 .0f + 0 .2f *mSimplifyDrawingSlider ->value () );
539539
540540 // update symbology
541541 emit refreshLegend ( layer->id (), QgsLegendItem::DontChange );
You can’t perform that action at this time.
0 commit comments