[TD]Change grid default to OFF

This commit is contained in:
Wanderer Fan
2022-03-07 15:48:53 -05:00
committed by WandererFan
parent 2c55cda567
commit 84f2340170

View File

@@ -241,6 +241,6 @@ bool PreferencesGui::showGrid()
Base::Reference<ParameterGrp> hGrp = App::GetApplication().GetUserParameter().
GetGroup("BaseApp")->GetGroup("Preferences")->
GetGroup("Mod/TechDraw/General");
bool show = hGrp->GetBool("showGrid", true);
bool show = hGrp->GetBool("showGrid", false);
return show;
}