From afb51497cd76873a48b7402271dcae49f04f6c7c Mon Sep 17 00:00:00 2001 From: Tobias Fella Date: Thu, 11 May 2023 10:54:30 +0200 Subject: [PATCH] Fix autocompletion not working BUG: 468967 --- src/chatdocumenthandler.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/chatdocumenthandler.h b/src/chatdocumenthandler.h index d489f9547..76136ca4d 100644 --- a/src/chatdocumenthandler.h +++ b/src/chatdocumenthandler.h @@ -157,7 +157,7 @@ Q_SIGNALS: private: int completionStartIndex() const; - bool m_isEdit; + bool m_isEdit = false; QQuickTextDocument *m_document;