Commit fcb1b2a5 authored by Ronan Abhamon's avatar Ronan Abhamon

fix(SearchBox): missing properties in style file (color, fontSize)

parent 14cac8ad
...@@ -49,6 +49,8 @@ Item { ...@@ -49,6 +49,8 @@ Item {
id: searchField id: searchField
background: SearchBoxStyle.searchFieldBackground background: SearchBoxStyle.searchFieldBackground
color: SearchBoxStyle.text.color
font.pointSize: SearchBoxStyle.text.fontSize
width: parent.width width: parent.width
Keys.onEscapePressed: _hideMenu() Keys.onEscapePressed: _hideMenu()
......
...@@ -11,4 +11,9 @@ QtObject { ...@@ -11,4 +11,9 @@ QtObject {
property Rectangle searchFieldBackground: Rectangle { property Rectangle searchFieldBackground: Rectangle {
implicitHeight: 30 implicitHeight: 30
} }
property QtObject text: QtObject {
property color color: Colors.d
property int fontSize: 11
}
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment