From d1ffbc0ae9e393b391c6c2429c4dd9671d93a703 Mon Sep 17 00:00:00 2001 From: Uwe Date: Sat, 13 Aug 2022 15:11:32 +0200 Subject: [PATCH] [Gui] [skip CI] NaviCube: fix indentation mistake from previous commit --- src/Gui/NaviCube.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Gui/NaviCube.cpp b/src/Gui/NaviCube.cpp index e84ea98552..d5dafc90e6 100644 --- a/src/Gui/NaviCube.cpp +++ b/src/Gui/NaviCube.cpp @@ -1268,7 +1268,7 @@ bool NaviCubeImplementation::mouseReleased(short x, short y) { int pick = pickFace(x, y); ParameterGrp::handle hGrpNavi = App::GetApplication().GetParameterGroupByPath("User parameter:BaseApp/Preferences/NaviCube"); - long step = Base::clamp(hGrpNavi->GetInt("NaviStepByTurn", 8), 4L, 36L); + long step = Base::clamp(hGrpNavi->GetInt("NaviStepByTurn", 8), 4L, 36L); float rotStepAngle = 360.0f / step; bool toNearest = hGrpNavi->GetBool("NaviRotateToNearest", true); bool applyRotation = true;