mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-04 09:25:12 +02:00
Reset Window changes
This commit is contained in:
parent
320bd2b4d4
commit
51be88d4c3
1 changed files with 2 additions and 5 deletions
|
@ -52,9 +52,6 @@ Fadable {
|
|||
// property bool pinned: false
|
||||
property bool resizable: false
|
||||
|
||||
property int colorScheme: hifi.colorSchemes.dark
|
||||
readonly property int isLightScheme: colorScheme == hifi.colorSchemes.light
|
||||
|
||||
property vector2d minSize: Qt.vector2d(100, 100)
|
||||
property vector2d maxSize: Qt.vector2d(1280, 720)
|
||||
|
||||
|
@ -140,7 +137,7 @@ Fadable {
|
|||
id: contentBackground
|
||||
anchors.fill: parent
|
||||
anchors.rightMargin: parent.isScrolling ? 11 : 0
|
||||
color: isLightScheme ? hifi.colors.backgroundLight : hifi.colors.backgroundDark
|
||||
color: hifi.colors.baseGray
|
||||
visible: modality != Qt.ApplicationModal
|
||||
}
|
||||
|
||||
|
@ -220,7 +217,7 @@ Fadable {
|
|||
}
|
||||
width: parent.contentWidth
|
||||
height: footer.height + 2 * hifi.dimensions.contentSpacing.y
|
||||
color: isLightScheme ? hifi.colors.backgroundLight : hifi.colors.backgroundDark
|
||||
color: hifi.colors.baseGray
|
||||
visible: footer.height > 0
|
||||
|
||||
Item {
|
||||
|
|
Loading…
Reference in a new issue