You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Get the decimal value for zoom factor. This function is needed because the zoom factor spin box is shown as a percent value.
2307
+
// The minimum zoom factor value is 1.01
2308
+
if ( spinZoomFactor->value() == spinZoomFactor->minimum() )
2309
+
return1.01;
2310
+
else
2311
+
return spinZoomFactor->value() / 100.0;
2312
+
}
2313
+
2314
+
voidQgsOptions::setZoomFactorValue()
2315
+
{
2316
+
// Set the percent value for zoom factor spin box. This function is for converting the decimal zoom factor value in the qgis setting to the percent zoom factor value.
0 commit comments