From b918979fab9cdf73d864e1f770d05e0a23bbabd7 Mon Sep 17 00:00:00 2001 From: Zach Fox Date: Wed, 24 Jul 2019 09:59:32 -0700 Subject: [PATCH] DEV-301: Adjust size of VR-mode header icon --- .../qml/hifi/simplifiedUI/topBar/SimplifiedTopBar.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/interface/resources/qml/hifi/simplifiedUI/topBar/SimplifiedTopBar.qml b/interface/resources/qml/hifi/simplifiedUI/topBar/SimplifiedTopBar.qml index 822e485940..acabbe9485 100644 --- a/interface/resources/qml/hifi/simplifiedUI/topBar/SimplifiedTopBar.qml +++ b/interface/resources/qml/hifi/simplifiedUI/topBar/SimplifiedTopBar.qml @@ -362,8 +362,8 @@ Rectangle { id: displayModeImage source: HMD.active ? "./images/desktopMode.svg" : "./images/vrMode.svg" anchors.centerIn: parent - width: HMD.active ? 25 : 43 - height: 22 + width: HMD.active ? 25 : 26 + height: HMD.active ? 22 : 14 visible: false }