mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 18:13:05 +02:00
Merge pull request #10782 from vladest/fix_browse_black
Make background with default color. Fix few warnings
This commit is contained in:
commit
6314a8d273
2 changed files with 5 additions and 3 deletions
|
@ -217,7 +217,7 @@ FocusScope {
|
||||||
anchors.leftMargin: hifi.dimensions.textPadding
|
anchors.leftMargin: hifi.dimensions.textPadding
|
||||||
anchors.verticalCenter: parent.verticalCenter
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
id: popupText
|
id: popupText
|
||||||
text: listView.model[index] ? listView.model[index] : (listView.model.get(index).text ? listView.model.get(index).text : "")
|
text: listView.model[index] ? listView.model[index] : (listView.model.get && listView.model.get(index).text ? listView.model.get(index).text : "")
|
||||||
size: hifi.fontSizes.textFieldInput
|
size: hifi.fontSizes.textFieldInput
|
||||||
color: hifi.colors.baseGray
|
color: hifi.colors.baseGray
|
||||||
}
|
}
|
||||||
|
|
|
@ -23,11 +23,13 @@ import "../../../windows"
|
||||||
import "../../../dialogs/fileDialog"
|
import "../../../dialogs/fileDialog"
|
||||||
|
|
||||||
//FIXME implement shortcuts for favorite location
|
//FIXME implement shortcuts for favorite location
|
||||||
Item {
|
Rectangle {
|
||||||
id: root
|
id: root
|
||||||
anchors.top: parent.top
|
anchors.top: parent ? parent.top : undefined
|
||||||
HifiConstants { id: hifi }
|
HifiConstants { id: hifi }
|
||||||
|
|
||||||
|
color: hifi.colors.baseGray;
|
||||||
|
|
||||||
Settings {
|
Settings {
|
||||||
category: "FileDialog"
|
category: "FileDialog"
|
||||||
property alias width: root.width
|
property alias width: root.width
|
||||||
|
|
Loading…
Reference in a new issue