only one line of text in favorites

This commit is contained in:
Marco Martin 2015-06-22 16:50:39 -07:00
parent 65e85b7719
commit 4e31575a70
2 changed files with 4 additions and 1 deletions

View file

@ -186,7 +186,9 @@ MouseEventListener {
cellHeight: cellWidth
model: plasmoid.nativeInterface.applicationListModel
delegate: HomeLauncher {}
delegate: HomeLauncher {
maximumLineCount: 1
}
move: Transition {
NumberAnimation {

View file

@ -10,6 +10,7 @@ Item {
property var modelData: model
property bool isDropTarget: delegateRoot != dragDelegate && root.reorderingApps && applicationsView.dragData && applicationsView.dragData.ApplicationStorageIdRole == modelData.ApplicationStorageIdRole
property alias maximumLineCount: label.maximumLineCount
opacity: isDropTarget ? 0.3 : 1