Turned Zoom At Cursor option True by default - fixes #2371

This commit is contained in:
Yorik van Havre
2016-02-26 13:51:39 -03:00
parent 2254a4698d
commit 9e1ec2ac31
3 changed files with 38 additions and 8 deletions

View File

@@ -233,7 +233,7 @@ void NavigationStyle::initialize()
this->invertZoom = App::GetApplication().GetParameterGroupByPath
("User parameter:BaseApp/Preferences/View")->GetBool("InvertZoom",true);
this->zoomAtCursor = App::GetApplication().GetParameterGroupByPath
("User parameter:BaseApp/Preferences/View")->GetBool("ZoomAtCursor",false);
("User parameter:BaseApp/Preferences/View")->GetBool("ZoomAtCursor",true);
this->zoomStep = App::GetApplication().GetParameterGroupByPath
("User parameter:BaseApp/Preferences/View")->GetFloat("ZoomStep",0.2f);
}