fixes 0003222: Invert zoom setting is not respected in paper/page mode

This commit is contained in:
wmayer
2019-01-14 11:08:17 +01:00
parent dff1832255
commit 2c42c57560
8 changed files with 24 additions and 5 deletions

View File

@@ -260,7 +260,7 @@ DrawingView::DrawingView(Gui::Document* doc, QWidget* parent)
ParameterGrp::handle hGrp = App::GetApplication().GetParameterGroupByPath
("User parameter:BaseApp/Preferences/View");
bool on = hGrp->GetBool("InvertZoom", false);
bool on = hGrp->GetBool("InvertZoom", true);
m_view->setZoomInverted(on);
}