File 3.2-show.qml.patch of Package calamares
Comment explanatory parts
--- a/src/branding/default/show.qml 2022-03-01 22:21:51.638895235 +0300
+++ b/src/branding/default/show.qml 2022-03-02 00:07:39.502246736 +0300
@@ -19,7 +19,7 @@
console.log("QML Component (default slideshow) Next slide");
presentation.goToNextSlide();
}
-
+/* Uncomment to enable multiple slides
Timer {
id: advanceTimer
interval: 1000
@@ -27,7 +27,7 @@
repeat: true
onTriggered: nextSlide()
}
-
+ */
Slide {
Image {
@@ -37,6 +37,7 @@
fillMode: Image.PreserveAspectFit
anchors.centerIn: parent
}
+/* Uncomment to show some text
Text {
anchors.horizontalCenter: background.horizontalCenter
anchors.top: background.bottom
@@ -49,8 +50,9 @@
width: presentation.width
horizontalAlignment: Text.Center
}
+ */
}
-
+/* Uncomment to enable multiple slides
Slide {
centeredText: qsTr("This is a second Slide element.")
}
@@ -58,7 +60,7 @@
Slide {
centeredText: qsTr("This is a third Slide element.")
}
-
+ */
// When this slideshow is loaded as a V1 slideshow, only
// activatedInCalamares is set, which starts the timer (see above).
//