From 658eb187c999aca98179a9e145df7dbf9a8a9ca6 Mon Sep 17 00:00:00 2001 From: Carl Schwan Date: Wed, 8 Dec 2021 14:16:34 +0100 Subject: [PATCH] Prevent instability with TextArea with null as background --- imports/NeoChat/Component/ChatBox/ReplyPane.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imports/NeoChat/Component/ChatBox/ReplyPane.qml b/imports/NeoChat/Component/ChatBox/ReplyPane.qml index f5cb00cb9..36c7731f4 100644 --- a/imports/NeoChat/Component/ChatBox/ReplyPane.qml +++ b/imports/NeoChat/Component/ChatBox/ReplyPane.qml @@ -87,7 +87,7 @@ Loader { readOnly: true wrapMode: Label.Wrap textFormat: TextEdit.RichText - background: null + background: Item {} HoverHandler { cursorShape: textArea.hoveredLink ? Qt.PointingHandCursor : Qt.IBeamCursor }