From a2d110740db7879c648f49dd3d253b9ec5472782 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?S=C3=A9bastien=20Blin?=
 <sebastien.blin@savoirfairelinux.com>
Date: Fri, 7 Jul 2023 07:32:16 -0400
Subject: [PATCH] swarmdetailspanel: avoid bugguy column layout

Since Qt 6.4, some layout are bugguy causing bad positioning.
(Even some examples in Qt's doc are incorrect)
So, use anchors instead.

Change-Id: Iebb47b8c7e694049ba297609a12bcf43db7dddd3
GitLab: #1217
---
 .../mainview/components/SwarmDetailsPanel.qml  | 18 ++++++++++++------
 1 file changed, 12 insertions(+), 6 deletions(-)

diff --git a/src/app/mainview/components/SwarmDetailsPanel.qml b/src/app/mainview/components/SwarmDetailsPanel.qml
index adad95da0..f56675589 100644
--- a/src/app/mainview/components/SwarmDetailsPanel.qml
+++ b/src/app/mainview/components/SwarmDetailsPanel.qml
@@ -38,15 +38,18 @@ Rectangle {
 
     property string textColor: UtilsAdapter.luma(root.color) ? JamiTheme.chatviewTextColorLight : JamiTheme.chatviewTextColorDark
 
-    ColumnLayout {
+    Item {
         id: swarmProfileDetails
         anchors.fill: parent
-        spacing: 0
 
         ColumnLayout {
             id: header
-            Layout.topMargin: JamiTheme.swarmDetailsPageTopMargin
-            Layout.fillWidth: true
+
+            anchors.top: parent.top
+            anchors.topMargin: JamiTheme.swarmDetailsPageTopMargin
+            anchors.left: parent.left
+            anchors.right: parent.right
+
             spacing: JamiTheme.preferredMarginSize
 
             RowLayout {
@@ -230,8 +233,11 @@ Rectangle {
 
         Rectangle {
             id: details
-            Layout.fillWidth: true
-            Layout.preferredHeight: root.height - header.height - 2 * JamiTheme.preferredMarginSize
+            anchors.top: header.bottom
+            anchors.bottom: parent.bottom
+            anchors.left: parent.left
+            anchors.right: parent.right
+
             color: JamiTheme.secondaryBackgroundColor
 
             JamiFlickable {
-- 
GitLab