Skip to content

Commit

Permalink
Fix rotation map value.
Browse files Browse the repository at this point in the history
  • Loading branch information
ismailsunni committed Jun 6, 2019
1 parent 9720c2e commit 59172b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/3d/qgs3dnavigationwidget.cpp
Expand Up @@ -88,7 +88,7 @@ Qgs3DNavigationWidget::Qgs3DNavigationWidget(Qgs3DMapCanvas *parent) : QWidget(p
parent,
[ = ]{
qInfo() << "Dial value: " << mRotateSceneDial->value();
parent->cameraController()->setCameraHeadingAngle(mRotateSceneDial->value());
parent->cameraController()->setCameraHeadingAngle(mRotateSceneDial->value() - 180);
}
);

Expand Down

0 comments on commit 59172b2

Please sign in to comment.