From 1c934401dae122a063890fee1d6f39b94d2afeeb Mon Sep 17 00:00:00 2001 From: Thomas Vanbesien Date: Fri, 6 Mar 2026 15:13:06 +0100 Subject: Fix implicitWidth binding loop in certificate trust dialog Set explicit implicitWidth on the Dialog to prevent the Fusion style binding loop warning, and add text wrapping for certificate info. --- demo/Main.qml | 2 ++ 1 file changed, 2 insertions(+) (limited to 'demo') diff --git a/demo/Main.qml b/demo/Main.qml index 48af74a..28d59bc 100644 --- a/demo/Main.qml +++ b/demo/Main.qml @@ -65,6 +65,7 @@ ApplicationWindow { property string certInfo anchors.centerIn: parent + implicitWidth: 400 modal: true standardButtons: Dialog.Yes | Dialog.No title: "Certificate Trust" @@ -74,6 +75,7 @@ ApplicationWindow { Label { text: certTrustDialog.certInfo + wrapMode: Text.Wrap } } -- cgit v1.2.3