parent
1d45484218
commit
5814831ecc
@ -0,0 +1,49 @@
|
|||||||
|
From 57187b7e6a1c6396c95b9450ff4c8acb8e70f431 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Aleix Pol <aleixpol@kde.org>
|
||||||
|
Date: Tue, 5 Apr 2022 00:40:27 +0200
|
||||||
|
Subject: [PATCH] AboutPage: Prevent infinite loop
|
||||||
|
|
||||||
|
Do not use the width of the item but the width of the page to decide if
|
||||||
|
we are on wide mode in the FormLayout.
|
||||||
|
|
||||||
|
For some reason our default height hits a perfect storm of:
|
||||||
|
- growing past the page height
|
||||||
|
- adds a scrollbar
|
||||||
|
- this narrows the view and we enable the compact mode
|
||||||
|
- this makes it fit again
|
||||||
|
- goto 0
|
||||||
|
|
||||||
|
BUG: 447958
|
||||||
|
---
|
||||||
|
src/controls/AboutItem.qml | 2 ++
|
||||||
|
src/controls/AboutPage.qml | 1 +
|
||||||
|
2 files changed, 3 insertions(+)
|
||||||
|
|
||||||
|
diff --git a/src/controls/AboutItem.qml b/src/controls/AboutItem.qml
|
||||||
|
index fbc720a1..675bab44 100644
|
||||||
|
--- a/src/controls/AboutItem.qml
|
||||||
|
+++ b/src/controls/AboutItem.qml
|
||||||
|
@@ -74,6 +74,8 @@ Item
|
||||||
|
/** @internal */
|
||||||
|
property bool _usePageStack: false
|
||||||
|
|
||||||
|
+ property alias wideMode: form.wideMode
|
||||||
|
+
|
||||||
|
/** @internal */
|
||||||
|
default property alias _content: form.data
|
||||||
|
|
||||||
|
diff --git a/src/controls/AboutPage.qml b/src/controls/AboutPage.qml
|
||||||
|
index e0043343..22994940 100644
|
||||||
|
--- a/src/controls/AboutPage.qml
|
||||||
|
+++ b/src/controls/AboutPage.qml
|
||||||
|
@@ -95,6 +95,7 @@ ScrollablePage
|
||||||
|
|
||||||
|
AboutItem {
|
||||||
|
id: aboutItem
|
||||||
|
+ wideMode: page.width >= aboutItem.implicitWidth
|
||||||
|
|
||||||
|
_usePageStack: applicationWindow().pageStack ? true : false
|
||||||
|
}
|
||||||
|
--
|
||||||
|
GitLab
|
||||||
|
|
@ -1 +1,2 @@
|
|||||||
SHA512 (kirigami2-5.88.0.tar.xz) = adb20c007bd8d1206be87d936a9affe1f7e2203158ec5ee241bde8e60e2b6e1d701393c4d85841644321f70496de1e67cb4feb9009c2cd7d153eba2407c480fb
|
SHA512 (kirigami2-5.92.0.tar.xz) = 42d75b8931f28ce2fa200c19acfc9194518b856dd33d9bbeb490f24ddb0ae03ba7c01443a5bc2a07088de69a9300245434460ddcd28cb2b1caa2f2288e45405a
|
||||||
|
SHA512 (kirigami2-5.93.0.tar.xz) = 372d464a79dafa061e4c07528c4765445b89988bbbf345019a8f544c4012a0c64abf8a07d4b97b4d1874af6753cb357b4f11d958face1ce17b3de8e6daddded2
|
||||||
|
@ -0,0 +1 @@
|
|||||||
|
kirigami2
|
Loading…
Reference in new issue