From c5e9a28bef72dde93c37eaad68a433ca7a2530cb Mon Sep 17 00:00:00 2001 From: Akseli Lahtinen Date: Wed, 10 Jan 2024 14:12:54 +0000 Subject: [PATCH] KItemListRoleEditor: Disable spellchecking No need for spellchecking when renaming folders/filenames. BUG:477897 --- src/kitemviews/private/kitemlistroleeditor.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/kitemviews/private/kitemlistroleeditor.cpp b/src/kitemviews/private/kitemlistroleeditor.cpp index ea03dfa38..fd290327a 100644 --- a/src/kitemviews/private/kitemlistroleeditor.cpp +++ b/src/kitemviews/private/kitemlistroleeditor.cpp @@ -18,6 +18,7 @@ KItemListRoleEditor::KItemListRoleEditor(QWidget *parent) setAcceptRichText(false); enableFindReplace(false); document()->setDocumentMargin(0); + setCheckSpellingEnabled(false); if (parent) { parent->installEventFilter(this); -- 2.47.3