From d2d8c52733b3ae3938de2585b3f8101dd8e2a5b9 Mon Sep 17 00:00:00 2001 From: Claudio Cambra Date: Wed, 13 Sep 2023 01:05:20 +0800 Subject: [PATCH] Do not present NCInputDateField backend as public property Signed-off-by: Claudio Cambra --- src/gui/filedetails/NCInputDateField.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/filedetails/NCInputDateField.qml b/src/gui/filedetails/NCInputDateField.qml index 9d1e7ce76cce4..4c0ea491c7fe4 100644 --- a/src/gui/filedetails/NCInputDateField.qml +++ b/src/gui/filedetails/NCInputDateField.qml @@ -25,7 +25,7 @@ NCInputTextField { text = backend.dateString; } - property DateFieldBackend backend: DateFieldBackend { + DateFieldBackend { id: backend onDateStringChanged: if (!root.activeFocus) root.updateText() }