mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-25 17:35:08 +02:00
diff minimize
This commit is contained in:
parent
9d5f392be3
commit
aa164bbf8f
1 changed files with 4 additions and 4 deletions
|
@ -58,14 +58,14 @@ Column {
|
|||
|
||||
Rectangle {
|
||||
id: shadow
|
||||
width: frame ? frame.width: 480
|
||||
width: frame.width
|
||||
height: 1
|
||||
color: hifi.colors.baseGrayShadow
|
||||
x: -hifi.dimensions.contentMargin.x
|
||||
}
|
||||
|
||||
Rectangle {
|
||||
width: frame ? frame.width : 480
|
||||
width: frame.width
|
||||
height: 1
|
||||
color: hifi.colors.baseGrayHighlight
|
||||
x: -hifi.dimensions.contentMargin.x
|
||||
|
@ -121,8 +121,8 @@ Column {
|
|||
|
||||
LinearGradient {
|
||||
id: bottomBar
|
||||
visible: (desktop ? desktop.gradientsSupported : false) && isCollapsible
|
||||
width: (frame ? frame.width : 480)
|
||||
visible: desktop.gradientsSupported && isCollapsible
|
||||
width: frame.width
|
||||
height: visible ? 4 : 0
|
||||
x: -hifi.dimensions.contentMargin.x
|
||||
anchors.top: heading.bottom
|
||||
|
|
Loading…
Reference in a new issue