You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: contents/ui/MainColumnItem.qml
+10-10Lines changed: 10 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -58,14 +58,14 @@ Item {
58
58
signal newTextQuery(string text)
59
59
property real mainColumnHeight: tileSide *plasmoid.configuration.numberRows
60
60
property real favoritesColumnHeight: (units.iconSizes.medium+units.smallSpacing*2) *4
61
-
property var pinnedModel:plasmoid.configuration.favGridModel==0?globalFavorites:plasmoid.configuration.favGridModel==1?rootModel.modelForRow(0):rootModel.modelForRow(1)
62
-
property var recommendedModel:plasmoid.configuration.recentGridModel==0?rootModel.modelForRow(1):plasmoid.configuration.recentGridModel==1?rootModel.modelForRow(0): globalFavorites
63
-
property var allAppsModel:rootModel.modelForRow(2)
61
+
property var pinnedModel:[globalFavorites, rootModel.modelForRow(0), rootModel.modelForRow(1)]
62
+
property var recommendedModel:[rootModel.modelForRow(1), rootModel.modelForRow(0), globalFavorites, globalFavorites]
63
+
property var allAppsModel:[rootModel.modelForRow(2)]
0 commit comments