aboutsummaryrefslogtreecommitdiffstats
path: root/demo/Main.qml
diff options
context:
space:
mode:
authorThomas Vanbesien <tvanbesi@proton.me>2026-03-06 15:13:06 +0100
committerThomas Vanbesien <tvanbesi@proton.me>2026-03-06 15:13:06 +0100
commit1c934401dae122a063890fee1d6f39b94d2afeeb (patch)
tree027084d15cff31e91c3ce02ff3943cdf49af3f12 /demo/Main.qml
parentd2e8cebe210d558d4abba31eebfb83155e7e5009 (diff)
downloadBobinkQtOpcUa-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.
Diffstat (limited to 'demo/Main.qml')
-rw-r--r--demo/Main.qml2
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
}
}