From e6b81b31d8148407fc7094acd1736aa6cf012091 Mon Sep 17 00:00:00 2001 From: David Rowe Date: Tue, 8 Mar 2016 09:59:00 +1300 Subject: [PATCH] Fix Running Script's tree view --- interface/resources/qml/controls-uit/Tree.qml | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/interface/resources/qml/controls-uit/Tree.qml b/interface/resources/qml/controls-uit/Tree.qml index 0981999568..18741d6420 100644 --- a/interface/resources/qml/controls-uit/Tree.qml +++ b/interface/resources/qml/controls-uit/Tree.qml @@ -58,21 +58,12 @@ TreeView { text: styleData.isExpanded ? hifi.glyphs.caratDn : hifi.glyphs.caratR size: hifi.fontSizes.carat color: colorScheme == hifi.colorSchemes.light - ? (styleData.selected - ? hifi.colors.black - : (iconArea.pressed ? hifi.colors.white : hifi.colors.baseGrayHighlight)) - : (styleData.selected - ? hifi.colors.black - : (iconArea.pressed ? hifi.colors.white : hifi.colors.lightGrayText)) + ? (styleData.selected ? hifi.colors.black : hifi.colors.baseGrayHighlight) + : (styleData.selected ? hifi.colors.black : hifi.colors.lightGrayText) anchors { left: parent ? parent.left : undefined leftMargin: hifi.dimensions.tablePadding / 2 } - MouseArea { - id: iconArea - anchors.fill: parent - propagateComposedEvents: true - } } handle: Item {