mirror of
https://github.com/lubosz/overte.git
synced 2025-04-16 19:59:20 +02:00
Fixing inverted mirror zoom setting
This commit is contained in:
parent
300a879ff4
commit
62af30761e
1 changed files with 2 additions and 1 deletions
|
@ -35,7 +35,8 @@ AvatarInputs* AvatarInputs::getInstance() {
|
|||
|
||||
AvatarInputs::AvatarInputs(QQuickItem* parent) : QQuickItem(parent) {
|
||||
INSTANCE = this;
|
||||
_mirrorZoomed = rearViewZoomLevel.get() != 0;
|
||||
int zoomSetting = rearViewZoomLevel.get();
|
||||
_mirrorZoomed = zoomSetting == 0;
|
||||
}
|
||||
|
||||
#define AI_UPDATE(name, src) \
|
||||
|
|
Loading…
Reference in a new issue