summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorSamuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>2020-02-13 07:38:54 +0100
committerThorsten Behrens <Thorsten.Behrens@CIB.de>2020-02-14 15:22:13 +0100
commitf475d0574a2df630b2940f0204bb13199f823706 (patch)
treec3cdf344d0122e48a6c0ff49a4fba461d46cd966 /sc
parente2aa8de67c3bf0cc09160b256c825fb586947ce6 (diff)
tdf#130325 Fix listbox used as dropdown
In this case, the listbox is not used as a static widget, also not as a combobox with dropdown. Instead the listbox is placed in a popup to choose values from. Need to handle this case similiar to the combobox dropdown (Cursor movement only travels through items, Return selects one item). Regression from 7de9417d5f65d35227c7f80f6d587c2a56bde4e0 Change-Id: Idadc3da5847e12e1408203b13ab59eb53fe14eea Reviewed-on: https://gerrit.libreoffice.org/c/core/+/88581 Tested-by: Jenkins Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> (cherry picked from commit d92463c88a557eea7a439def39659b1409772583) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/88504 Reviewed-by: Thorsten Behrens <Thorsten.Behrens@CIB.de>
Diffstat (limited to 'sc')
-rw-r--r--sc/source/ui/view/gridwin.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/view/gridwin.cxx b/sc/source/ui/view/gridwin.cxx
index f26f3c77e1cc..cf118dc46a96 100644
--- a/sc/source/ui/view/gridwin.cxx
+++ b/sc/source/ui/view/gridwin.cxx
@@ -234,7 +234,7 @@ public:
// ListBox in a FloatingWindow (pParent)
ScFilterListBox::ScFilterListBox( vcl::Window* pParent, ScGridWindow* pGrid,
SCCOL nNewCol, SCROW nNewRow, ScFilterBoxMode eNewMode ) :
- ListBox( pParent, WB_AUTOHSCROLL ),
+ ListBox( pParent, WB_AUTOHSCROLL | WB_LISTBOX_POPUP ),
pGridWin( pGrid ),
nCol( nNewCol ),
nRow( nNewRow ),