diff options
author | Caolán McNamara <caolanm@redhat.com> | 2022-04-14 12:05:49 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2022-04-14 16:10:37 +0200 |
commit | 3f793465819f63aa001f5842f232be24d13153fd (patch) | |
tree | c24b161f0e30cfef7f1850ae382e640661a317a1 /sfx2 | |
parent | ae0e7e3918284c31a91acca0f733919926ae3a62 (diff) |
tdf#148101 don't autocomplete remote files dialog entry on delete/backspace
Change-Id: Ieddb41eb37e7090416a418afeffb76ce0eddf90a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133009
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/appl/newhelp.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sfx2/source/appl/newhelp.cxx b/sfx2/source/appl/newhelp.cxx index 58818c3a248d..a120a99f41bb 100644 --- a/sfx2/source/appl/newhelp.cxx +++ b/sfx2/source/appl/newhelp.cxx @@ -475,6 +475,7 @@ IMPL_LINK_NOARG(IndexTabPage_Impl, EntryChangeHdl, weld::Entry&, void) case css::awt::Key::DELETE_TO_END_OF_LINE: case KEY_BACKSPACE: case KEY_DELETE: + aAutoCompleteIdle.Stop(); break; default: aAutoCompleteIdle.Start(); |