| commit | 6aba19406767a54bb61eaffb2903c1b2902da9a8 | [log] |
|---|---|---|
| author | Caolán McNamara <caolan.mcnamara@collabora.com> | Tue Dec 05 10:58:57 2023 +0000 |
| committer | Caolán McNamara <caolan.mcnamara@collabora.com> | Tue Dec 05 14:43:04 2023 +0100 |
| tree | e7537043cbf883eab574dee093268a9aff33c5e9 | |
| parent | 9b5964cf5931d7c09e4fd624d68595891c2afb58 [diff] |
Resolves: tdf#158441 we don't want to return early for all handled keys a problem since: commit c39bd1f6690ade936d62a66265b9b277061024d8 Author: Caolán McNamara <caolanm@redhat.com> Date: Wed Feb 19 10:13:15 2020 +0000 weld CodeCompleteWindow Change-Id: I520a591bad89515c973098f4200f01ae0ddbdc34 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/160337 Tested-by: Caolán McNamara <caolan.mcnamara@collabora.com> Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
diff --git a/basctl/source/basicide/baside2b.cxx b/basctl/source/basicide/baside2b.cxx index e62ba50..d410a5e 100644 --- a/basctl/source/basicide/baside2b.cxx +++ b/basctl/source/basicide/baside2b.cxx
@@ -562,7 +562,11 @@ void EditorWindow::KeyInput( const KeyEvent& rKEvt ) if (pCodeCompleteWnd->IsVisible() && CodeCompleteOptions::IsCodeCompleteOn()) { if (pCodeCompleteWnd->HandleKeyInput(rKEvt)) pCodeCompleteWnd->HandleKeyInput(rKEvt); if( rKEvt.GetKeyCode().GetCode() == KEY_UP || rKEvt.GetKeyCode().GetCode() == KEY_DOWN || rKEvt.GetKeyCode().GetCode() == KEY_TAB || rKEvt.GetKeyCode().GetCode() == KEY_POINT) return; }