diff options
| author | Thomas Vanbesien <tvanbesi@proton.me> | 2026-03-06 15:13:06 +0100 |
|---|---|---|
| committer | Thomas Vanbesien <tvanbesi@proton.me> | 2026-03-06 15:13:06 +0100 |
| commit | 1c934401dae122a063890fee1d6f39b94d2afeeb (patch) | |
| tree | 027084d15cff31e91c3ce02ff3943cdf49af3f12 | |
| parent | d2e8cebe210d558d4abba31eebfb83155e7e5009 (diff) | |
| download | BobinkQtOpcUa-1c934401dae122a063890fee1d6f39b94d2afeeb.tar.gz BobinkQtOpcUa-1c934401dae122a063890fee1d6f39b94d2afeeb.zip | |
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.
| -rw-r--r-- | demo/Main.qml | 2 |
1 files changed, 2 insertions, 0 deletions
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 } } |
