diff options
author | Caolán McNamara <caolanm@redhat.com> | 2020-02-05 16:00:06 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2020-02-06 12:26:26 +0100 |
commit | 415c1b05242b80ca883596952caa0e179a07b409 (patch) | |
tree | 8ae30a122d29f09594baf32e49c8055d7fd30672 | |
parent | 4eefad00d969555a13397061dd560e98534a2901 (diff) |
return true to show pressing tab was consumed
to move focus to another toolitem
Change-Id: I12f8602dd9a963c1e84e46bad780cc3c7dbe427d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/88045
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
-rw-r--r-- | vcl/source/window/toolbox.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/window/toolbox.cxx b/vcl/source/window/toolbox.cxx index c11d7285d5b9..6763ca2d09e0 100644 --- a/vcl/source/window/toolbox.cxx +++ b/vcl/source/window/toolbox.cxx @@ -3710,7 +3710,7 @@ bool ToolBox::EventNotify( NotifyEvent& rNEvt ) if( bNoTabCycling ) return DockingWindow::EventNotify( rNEvt ); else if( ImplChangeHighlightUpDn( aKeyCode.IsShift() , bNoTabCycling ) ) - return false; + return true; else return DockingWindow::EventNotify( rNEvt ); } |