| commit | ea7c17960ddfe93249b17612662adc4694bd02b3 | [log] |
|---|---|---|
| author | Caolán McNamara <caolan.mcnamara@collabora.com> | Tue Dec 05 10:58:57 2023 +0000 |
| committer | Xisco Fauli <xiscofauli@libreoffice.org> | Wed Dec 06 19:12:40 2023 +0100 |
| tree | efd0e81b73b9a375ba212ea1ab37e75574830726 | |
| parent | c8c1c3e99212604e50fe42dd4752d75601da273e [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> (cherry picked from commit 6aba19406767a54bb61eaffb2903c1b2902da9a8) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/160356 Tested-by: Jenkins Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
diff --git a/basctl/source/basicide/baside2b.cxx b/basctl/source/basicide/baside2b.cxx index f1c1a73..373114a 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; }