From a659db1f9ce55771fa3cca2546e1eb4dfeaf3dae Mon Sep 17 00:00:00 2001 From: Mike Stemle Date: Sun, 24 Mar 2024 13:27:44 -0400 Subject: [PATCH] Update Presentation.qml The `padding` property is present in the qt5 version, but not the qt6 version. I notice a syntax error as a result of this missing propertly. --- src/qml/calamares-qt6/slideshow/Presentation.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/qml/calamares-qt6/slideshow/Presentation.qml b/src/qml/calamares-qt6/slideshow/Presentation.qml index aab7007e6..1eed2e842 100644 --- a/src/qml/calamares-qt6/slideshow/Presentation.qml +++ b/src/qml/calamares-qt6/slideshow/Presentation.qml @@ -196,6 +196,8 @@ Item { Text { id: notesText + property real padding: 16; + x: padding y: padding width: parent.width - 2 * padding