diff options
-rw-r--r-- | ToastManager.qml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ToastManager.qml b/ToastManager.qml index f81cb15..0dab630 100644 --- a/ToastManager.qml +++ b/ToastManager.qml @@ -30,7 +30,8 @@ ListView { z: Infinity spacing: 5 anchors.fill: parent - anchors.bottomMargin: 10 + // parent.height * 0.1 = height of blue header rectangle on main + anchors.topMargin: parent.height * 0.1 + 5 verticalLayoutDirection: ListView.TopToBottom interactive: false |