From d056fa6c93dee993d932aeaf1aa94365bc8e73b7 Mon Sep 17 00:00:00 2001 From: Zach Fox Date: Tue, 19 Jun 2018 09:56:24 -0700 Subject: [PATCH] Fix MS15154: Remove focused button color --- interface/resources/qml/controls-uit/Button.qml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/interface/resources/qml/controls-uit/Button.qml b/interface/resources/qml/controls-uit/Button.qml index 0119d76ac2..8d0f513021 100644 --- a/interface/resources/qml/controls-uit/Button.qml +++ b/interface/resources/qml/controls-uit/Button.qml @@ -62,8 +62,6 @@ Original.Button { hifi.buttons.pressedColor[control.color] } else if (control.hovered) { hifi.buttons.hoveredColor[control.color] - } else if (!control.hovered && control.focus) { - hifi.buttons.focusedColor[control.color] } else { hifi.buttons.colorStart[control.color] } @@ -78,8 +76,6 @@ Original.Button { hifi.buttons.pressedColor[control.color] } else if (control.hovered) { hifi.buttons.hoveredColor[control.color] - } else if (!control.hovered && control.focus) { - hifi.buttons.focusedColor[control.color] } else { hifi.buttons.colorFinish[control.color] }