diff options
author | Frederick Yin <fkfd@fkfd.me> | 2022-04-09 11:47:27 +0800 |
---|---|---|
committer | Frederick Yin <fkfd@fkfd.me> | 2022-04-09 11:47:27 +0800 |
commit | e22e00919f82582826db4d7e9fea83d0d9c633f3 (patch) | |
tree | 207b42c7d3a3da48ed991120b04cf9f1d3cf4e4b | |
parent | 6606ada36caa0b1562b3a08d10e8e141be1802e1 (diff) |
Increase spacing in ScrollViews
-rw-r--r-- | contents/ui/ActivityView.qml | 1 | ||||
-rw-r--r-- | contents/ui/main.qml | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/contents/ui/ActivityView.qml b/contents/ui/ActivityView.qml index e6945f2..f35f89d 100644 --- a/contents/ui/ActivityView.qml +++ b/contents/ui/ActivityView.qml @@ -91,7 +91,6 @@ RowLayout { Layout.fillWidth: true PlasmaComponents3.CheckBox { id: activityCheckbox - Layout.alignment: Qt.AlignTop onToggled: () => { activityLabel.font.strikeout = (checkState == Qt.Checked) } diff --git a/contents/ui/main.qml b/contents/ui/main.qml index 17c330e..f207d25 100644 --- a/contents/ui/main.qml +++ b/contents/ui/main.qml @@ -121,6 +121,7 @@ Item { ListView { Layout.fillWidth: true + spacing: PlasmaCore.Units.smallSpacing delegate: ActivityView {} model: announcementsModel } @@ -153,6 +154,7 @@ Item { ListView { Layout.fillWidth: true + spacing: PlasmaCore.Units.gridUnit delegate: ActivityView {} model: assignmentsModel } |