From 6b9cb684ec86ebbc8a57aead831e5007b036335c Mon Sep 17 00:00:00 2001 From: Andreas Hatziiliou <andreas.hatziiliou@savoirfairelinux.com> Date: Thu, 10 Oct 2024 15:06:43 -0400 Subject: [PATCH] call_notifications: fix editable state of call notifications Text message notificaitons sent regarding the status of a call (i.e. busy, call lasted xx:yy mins, etc) were editable due to being a TextEdit and not a Text Change-Id: I9ded20a9b4dbdbaee034b0de6ae42e1eca2c02a0 --- src/app/commoncomponents/CallMessageDelegate.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/commoncomponents/CallMessageDelegate.qml b/src/app/commoncomponents/CallMessageDelegate.qml index 60a8723b5..4187fd057 100644 --- a/src/app/commoncomponents/CallMessageDelegate.qml +++ b/src/app/commoncomponents/CallMessageDelegate.qml @@ -113,7 +113,7 @@ SBSMessageBase { } - TextEdit { + Text { id: callLabel objectName: "callLabel" -- GitLab