[TechDraw] Simplify return logic

This commit is contained in:
Benjamin Bræstrup Sayoc
2023-04-09 16:34:23 +02:00
committed by WandererFan
parent 15fe52a04b
commit ef5fc4f237
14 changed files with 20 additions and 42 deletions

View File

@@ -101,7 +101,6 @@ QPainterPath QGICMark::shape() const
double QGICMark::getMarkFuzz() const
{
double result = Preferences::getPreferenceGroup("General")->GetFloat("MarkFuzz", 5.0);
return result;
return Preferences::getPreferenceGroup("General")->GetFloat("MarkFuzz", 5.0);
}