mirror of
https://github.com/overte-org/overte.git
synced 2025-08-06 19:59:28 +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
|
text: styleData.isExpanded ? hifi.glyphs.caratDn : hifi.glyphs.caratR
|
||||||
size: hifi.fontSizes.carat
|
size: hifi.fontSizes.carat
|
||||||
color: colorScheme == hifi.colorSchemes.light
|
color: colorScheme == hifi.colorSchemes.light
|
||||||
? (styleData.selected
|
? (styleData.selected ? hifi.colors.black : hifi.colors.baseGrayHighlight)
|
||||||
? hifi.colors.black
|
: (styleData.selected ? hifi.colors.black : hifi.colors.lightGrayText)
|
||||||
: (iconArea.pressed ? hifi.colors.white : hifi.colors.baseGrayHighlight))
|
|
||||||
: (styleData.selected
|
|
||||||
? hifi.colors.black
|
|
||||||
: (iconArea.pressed ? hifi.colors.white : hifi.colors.lightGrayText))
|
|
||||||
anchors {
|
anchors {
|
||||||
left: parent ? parent.left : undefined
|
left: parent ? parent.left : undefined
|
||||||
leftMargin: hifi.dimensions.tablePadding / 2
|
leftMargin: hifi.dimensions.tablePadding / 2
|
||||||
}
|
}
|
||||||
MouseArea {
|
|
||||||
id: iconArea
|
|
||||||
anchors.fill: parent
|
|
||||||
propagateComposedEvents: true
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
handle: Item {
|
handle: Item {
|
||||||
|
|
Loading…
Reference in a new issue