From 3aefa6ad9c60a7e03ecbc1201e7db326a263e582 Mon Sep 17 00:00:00 2001 From: motofckr9k Date: Fri, 19 Jun 2020 23:37:26 +0200 Subject: [PATCH] Remove if statements that are not needed anymore --- interface/resources/qml/hifi/audio/Audio.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/interface/resources/qml/hifi/audio/Audio.qml b/interface/resources/qml/hifi/audio/Audio.qml index b3ac3f620e..054d709c4a 100644 --- a/interface/resources/qml/hifi/audio/Audio.qml +++ b/interface/resources/qml/hifi/audio/Audio.qml @@ -516,7 +516,7 @@ Rectangle { Separator { id: secondSeparator; - anchors.top: systemInjectorGainContainer.visible ? systemInjectorGainContainer.bottom : switchesContainer.bottom; + anchors.top: systemInjectorGainContainer.bottom; anchors.topMargin: 10; } @@ -611,7 +611,7 @@ Rectangle { Separator { id: thirdSeparator; - anchors.top: inputView.visible ? inputView.bottom : outputDeviceHeader.bottom; + anchors.top: inputView.bottom; anchors.topMargin: 10; }