mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 03:24:00 +02:00
Fix Running Script's tree view
This commit is contained in:
parent
b096e062e6
commit
e6b81b31d8
1 changed files with 2 additions and 11 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue