diff options
author | Arseniy Movshev <dodoradio@outlook.com> | 2023-05-27 20:44:04 +0100 |
---|---|---|
committer | Arseniy Movshev <dodoradio@outlook.com> | 2023-05-27 20:44:04 +0100 |
commit | 1aa91f7fee28e5905b0b9a8d56c978b3dc8f209e (patch) | |
tree | 241998efc61a232d434e6e5029e27b3ebfb259c1 /src | |
parent | f3f2edd4840f8e39fa72ea40603450c870388e2a (diff) |
fix pageheader clipping
Diffstat (limited to 'src')
-rw-r--r-- | src/main.qml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main.qml b/src/main.qml index bac67b1..d298d59 100644 --- a/src/main.qml +++ b/src/main.qml @@ -35,11 +35,13 @@ Application { PageHeader { id: title text: "Overview" + z: 5 } property var weekday: ["Sun","Mon","Tue","Wed","Thu","Fri","Sat"]; Flickable { + z: 1 anchors.fill: parent contentHeight: contentColumn.implicitHeight Column { |