Sync code default values with Pref defaults

This commit is contained in:
wandererfan
2018-03-10 16:34:57 -05:00
committed by wmayer
parent 74375f6623
commit 5d363b450a
6 changed files with 10 additions and 10 deletions

View File

@@ -80,7 +80,7 @@ Qt::PenStyle QGICenterLine::getCenterStyle()
{
Base::Reference<ParameterGrp> hGrp = App::GetApplication().GetUserParameter().GetGroup("BaseApp")->
GetGroup("Preferences")->GetGroup("Mod/TechDraw/Decorations");
Qt::PenStyle centerStyle = static_cast<Qt::PenStyle> (hGrp->GetInt("CenterLine", 4));
Qt::PenStyle centerStyle = static_cast<Qt::PenStyle> (hGrp->GetInt("CenterLine", 2));
return centerStyle;
}