aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@qt.io>2022-04-01 15:39:14 +0200
committerUlf Hermann <ulf.hermann@qt.io>2022-09-13 16:52:09 +0200
commit4d14468029aa1c0fc4e16f9f0683d6f6aa626e02 (patch)
tree2f2372f60a89eff0794e56e8952a32378db5702d
parent499a65bc0ed3038456a09b74c3246c295b4080c5 (diff)
Revert "Add workaround for QML compiler bug"
This reverts commit 47a7a9e16922b22fb0adc5b138348ea7cf49a212. If the issue has been fixed in qmlsc, we don't need the workaround anymore. Task-number: QTBUG-102152 Change-Id: I59041d53bcabd3cda6d01a2c2aa4371c80316758 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Jarkko Koivikko <jarkko.koivikko@code-q.fi>
-rw-r--r--src/components/FunctionPopupList.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/FunctionPopupList.qml b/src/components/FunctionPopupList.qml
index 5f24a539..d9b2e1cd 100644
--- a/src/components/FunctionPopupList.qml
+++ b/src/components/FunctionPopupList.qml
@@ -59,7 +59,7 @@ Item {
target: backgroundLoader.item
property: "view"
value: listView
- when: backgroundLoader.item !== null && backgroundLoader.item.hasOwnProperty("view")
+ when: backgroundLoader.item && backgroundLoader.item.hasOwnProperty("view")
}
}