Compare commits
4 Commits
ubuntu/ora
...
ubuntu/plu
Author | SHA1 | Date |
---|---|---|
Rik Mills | 9f32cee101 | 6 days ago |
Simon Quigley | 5f7d263806 | 4 weeks ago |
Simon Quigley | d6c3d46eff | 1 month ago |
Simon Quigley | d61923c791 | 1 month ago |
@ -0,0 +1,22 @@
|
|||||||
|
Description: Fix a syntax error in Presentation.qml which prevents the slideshow from displaying
|
||||||
|
Author: Simon Quigley <tsimonq2@lubuntu.me>
|
||||||
|
Origin: vendor
|
||||||
|
Last-Update: 2024-10-15
|
||||||
|
---
|
||||||
|
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
|
||||||
|
--- a/src/qml/calamares-qt6/slideshow/Presentation.qml
|
||||||
|
+++ b/src/qml/calamares-qt6/slideshow/Presentation.qml
|
||||||
|
@@ -196,12 +196,7 @@ Item {
|
||||||
|
Text {
|
||||||
|
id: notesText
|
||||||
|
|
||||||
|
- property real padding: 16;
|
||||||
|
-
|
||||||
|
- x: padding
|
||||||
|
- y: padding
|
||||||
|
- width: parent.width - 2 * padding
|
||||||
|
-
|
||||||
|
+ anchors.margins: 16
|
||||||
|
|
||||||
|
font.pixelSize: 16
|
||||||
|
wrapMode: Text.WordWrap
|
Loading…
Reference in new issue