aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--components/imports/logichelper/BidirectionalBinding.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/imports/logichelper/BidirectionalBinding.qml b/components/imports/logichelper/BidirectionalBinding.qml
index 49c4c0a..fb33504 100644
--- a/components/imports/logichelper/BidirectionalBinding.qml
+++ b/components/imports/logichelper/BidirectionalBinding.qml
@@ -137,13 +137,13 @@ QtObject {
property Binding __b01: Binding {
target: __internal
property: "value01"
- value: target01[property01]
+ value: target01 ? target01[property01] : null
}
property Binding __b02: Binding {
target: __internal
property: "value02"
- value: target02[property02]
+ value: target02 ? target02[property02] : null
}