diff options
| author | Frank Reininghaus <[email protected]> | 2013-04-23 19:31:08 +0200 |
|---|---|---|
| committer | Frank Reininghaus <[email protected]> | 2013-04-23 19:31:08 +0200 |
| commit | 8f4d13dab8165e4c60c320d4b867e8476bdb041b (patch) | |
| tree | a2edbde9b97946e4957cbcd474c27a5ae214f457 /src | |
| parent | 8a40b0ee4ad4d083b1c3de942bcbda1c93d46b20 (diff) | |
Disable Find/Replace in the "rename inline" line edit
These actions do not work correctly because renaming is considered
finished as soon as the line edit loses focus, which happens when the
"Replace" dialog pops up.
BUG: 317772
FIXED-IN: 4.10.3
Diffstat (limited to 'src')
| -rw-r--r-- | src/kitemviews/private/kitemlistroleeditor.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/kitemviews/private/kitemlistroleeditor.cpp b/src/kitemviews/private/kitemlistroleeditor.cpp index 4f4006010..9f3b53c05 100644 --- a/src/kitemviews/private/kitemlistroleeditor.cpp +++ b/src/kitemviews/private/kitemlistroleeditor.cpp @@ -32,6 +32,7 @@ KItemListRoleEditor::KItemListRoleEditor(QWidget *parent) : setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff); setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff); setAcceptRichText(false); + enableFindReplace(false); document()->setDocumentMargin(0); if (parent) { |
