diff options
author | Frederick Yin <fkfd@fkfd.me> | 2023-07-26 13:45:45 +0800 |
---|---|---|
committer | Frederick Yin <fkfd@fkfd.me> | 2023-07-26 13:45:45 +0800 |
commit | 8db750f3da3aa93301ee4658db20d6ab516d51a1 (patch) | |
tree | 5123d1100c763c3a03d583f3d68bc7638498e572 /contents/ui/main.qml | |
parent | 81159f9f9ccc11bcae107a203a11f6b7a27d60dc (diff) |
Use PlasmaComponents.ListView
Diffstat (limited to 'contents/ui/main.qml')
-rw-r--r-- | contents/ui/main.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contents/ui/main.qml b/contents/ui/main.qml index 6465a16..86c4022 100644 --- a/contents/ui/main.qml +++ b/contents/ui/main.qml @@ -76,7 +76,7 @@ Item { ListView { id: announcementsListView Layout.fillWidth: true - spacing: PlasmaCore.Units.smallSpacing + spacing: 0 delegate: ActivityView {} model: announcementsModel @@ -122,7 +122,7 @@ Item { ListView { id: assignmentsListView Layout.fillWidth: true - spacing: PlasmaCore.Units.gridUnit + spacing: 0 delegate: ActivityView {} model: assignmentsModel |