From b1a4aed8d6112ffdb2c27d49168c86664a2d116b Mon Sep 17 00:00:00 2001 From: Jannis Voelker Date: Mon, 8 Apr 2024 10:15:22 +0200 Subject: [PATCH] Fix binding warning when using the popup on a variable followed by an event --- src/qml/DashboardView.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qml/DashboardView.qml b/src/qml/DashboardView.qml index bf80d23..621c0af 100644 --- a/src/qml/DashboardView.qml +++ b/src/qml/DashboardView.qml @@ -424,7 +424,7 @@ Rectangle { onClicked: { fullPopup.name = qsTranslate("Dashboard", "All selected event fields") - fullPopup.value = modelData + fullPopup.value = Qt.binding(function() { return modelData }) fullPopup.open() } }