From a55b88f9d78a07fed4b32108b1d876738875ec2a Mon Sep 17 00:00:00 2001 From: Felipe Kinoshita Date: Sat, 18 Sep 2021 11:12:24 -0300 Subject: [PATCH] Add more top margin between the day indicator and the incididence list This helps it feel less cramped. --- src/contents/ui/MultiDayView.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/contents/ui/MultiDayView.qml b/src/contents/ui/MultiDayView.qml index d85cef3e..3f298c3d 100644 --- a/src/contents/ui/MultiDayView.qml +++ b/src/contents/ui/MultiDayView.qml @@ -207,7 +207,7 @@ Item { anchors { fill: parent // Offset for date - topMargin: root.showDayIndicator ? Kirigami.Units.gridUnit + Kirigami.Units.smallSpacing : 0 + topMargin: root.showDayIndicator ? Kirigami.Units.gridUnit + Kirigami.Units.largeSpacing : 0 } QQC2.ScrollBar.horizontal.policy: QQC2.ScrollBar.AlwaysOff -- GitLab