mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01: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.verticalCenter: parent.verticalCenter
|
||||
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
|
||||
color: hifi.colors.baseGray
|
||||
}
|
||||
|
|
|
@ -23,11 +23,13 @@ import "../../../windows"
|
|||
import "../../../dialogs/fileDialog"
|
||||
|
||||
//FIXME implement shortcuts for favorite location
|
||||
Item {
|
||||
Rectangle {
|
||||
id: root
|
||||
anchors.top: parent.top
|
||||
anchors.top: parent ? parent.top : undefined
|
||||
HifiConstants { id: hifi }
|
||||
|
||||
color: hifi.colors.baseGray;
|
||||
|
||||
Settings {
|
||||
category: "FileDialog"
|
||||
property alias width: root.width
|
||||
|
|
Loading…
Reference in a new issue