mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-24 07:08:07 +00:00
fix(SearchBox): missing properties in style file (color, fontSize)
This commit is contained in:
parent
14cac8ad29
commit
fcb1b2a52f
2 changed files with 7 additions and 0 deletions
|
|
@ -49,6 +49,8 @@ Item {
|
|||
id: searchField
|
||||
|
||||
background: SearchBoxStyle.searchFieldBackground
|
||||
color: SearchBoxStyle.text.color
|
||||
font.pointSize: SearchBoxStyle.text.fontSize
|
||||
width: parent.width
|
||||
|
||||
Keys.onEscapePressed: _hideMenu()
|
||||
|
|
|
|||
|
|
@ -11,4 +11,9 @@ QtObject {
|
|||
property Rectangle searchFieldBackground: Rectangle {
|
||||
implicitHeight: 30
|
||||
}
|
||||
|
||||
property QtObject text: QtObject {
|
||||
property color color: Colors.d
|
||||
property int fontSize: 11
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue