launcher: fix height when one item
This commit is contained in:
parent
b80b531e88
commit
160673ee65
1 changed files with 1 additions and 1 deletions
|
|
@ -32,7 +32,7 @@ Item {
|
|||
PropertyChanges {
|
||||
root.currentList: appList.item
|
||||
root.implicitWidth: Config.launcher.sizes.itemWidth
|
||||
root.implicitHeight: Math.max(empty.implicitHeight, appList.implicitHeight)
|
||||
root.implicitHeight: appList.implicitHeight > 0 ? appList.implicitHeight : empty.implicitHeight
|
||||
appList.active: true
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue