diff options
author | Frederick Yin <fkfd@fkfd.me> | 2023-07-26 18:15:35 +0800 |
---|---|---|
committer | Frederick Yin <fkfd@fkfd.me> | 2023-07-26 18:15:35 +0800 |
commit | b2555cb09aa6f1b92cb41746ab546303ed6da38d (patch) | |
tree | b0eb2c3d586bf7b195183cc4d5b614c60ccc0b19 /contents/ui | |
parent | 668732f0188d9f98ac63bae368d4ecbff4cf571c (diff) |
Set clearance for scrollbar
Diffstat (limited to 'contents/ui')
-rw-r--r-- | contents/ui/ActivityView.qml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/contents/ui/ActivityView.qml b/contents/ui/ActivityView.qml index 38b92f1..2f11db9 100644 --- a/contents/ui/ActivityView.qml +++ b/contents/ui/ActivityView.qml @@ -17,7 +17,10 @@ PlasmaComponents.ListItem { property bool expanded: false ColumnLayout { - width: (type == "announcement" ? announcementsListView : assignmentsListView).width + width: + (type == "announcement" + ? announcementsListView : assignmentsListView).width + - PlasmaCore.Units.gridUnit // clearance for scrollbar Layout.fillWidth: true RowLayout { RowLayout { |