fix(StatusSearchPopup): Fix cutting text with big font (#604)
Decreasing padding. Setting loading property default to false. Fix #5197
This commit is contained in:
parent
b565a32c7e
commit
b2ac2794bb
|
@ -20,7 +20,7 @@ StatusModal {
|
|||
property string searchText: contentItem.searchText
|
||||
property string noResultsLabel: "No results"
|
||||
property string defaultSearchLocationText: "Anywhere"
|
||||
property bool loading
|
||||
property bool loading: false
|
||||
property Menu searchOptionsPopupMenu: Menu { }
|
||||
property var searchResults: [ ]
|
||||
property var searchSelectionButton
|
||||
|
@ -95,6 +95,8 @@ StatusModal {
|
|||
anchors.verticalCenter: parent.verticalCenter
|
||||
focus: true
|
||||
font.pixelSize: 28
|
||||
topPadding: 5 //smaller padding to handle bigger font
|
||||
bottomPadding: 5
|
||||
clearable: true
|
||||
showBackground: false
|
||||
font.family: Theme.palette.baseFont.name
|
||||
|
|
Loading…
Reference in New Issue