summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Raykowski <raykowj@gmail.com>2018-02-06 17:21:59 -0900
committerKatarina Behrens <Katarina.Behrens@cib.de>2018-02-09 12:08:06 +0100
commit6f511f1dec1fe4a5bc6d6e2dc116eb9886c24bda (patch)
treee93454b66f39b0610973be7d224fdc44746d7d15
parentab099923e20774a7232b9c9a8b46e3aefe07014e (diff)
tdf#115504 Add tabstop to Sidebar Navigator deck content trees
Change-Id: Ie006e01ea6179b94cca77354437678ff90e1bbd6 Reviewed-on: https://gerrit.libreoffice.org/49400 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Katarina Behrens <Katarina.Behrens@cib.de>
-rw-r--r--sw/source/uibase/utlui/navipi.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/uibase/utlui/navipi.cxx b/sw/source/uibase/utlui/navipi.cxx
index 1b03b621b0bc..7bb230d9725d 100644
--- a/sw/source/uibase/utlui/navipi.cxx
+++ b/sw/source/uibase/utlui/navipi.cxx
@@ -689,7 +689,7 @@ SwNavigationPI::SwNavigationPI(SfxBindings* _pBindings,
m_aStatusArr[3] = SwResId(STR_ACTIVE_VIEW);
m_aContentTree->SetStyle(m_aContentTree->GetStyle()|WB_HASBUTTONS|WB_HASBUTTONSATROOT|
- WB_CLIPCHILDREN|WB_HSCROLL );
+ WB_CLIPCHILDREN|WB_HSCROLL|WB_TABSTOP);
m_aContentTree->SetForceMakeVisible(true);
m_aContentTree->SetSpaceBetweenEntries(3);
m_aContentTree->SetSelectionMode(SelectionMode::Single);
@@ -703,7 +703,7 @@ SwNavigationPI::SwNavigationPI(SfxBindings* _pBindings,
// TreeListBox for global document
m_aGlobalTree->SetSelectionMode( SelectionMode::Multiple );
m_aGlobalTree->SetStyle(m_aGlobalTree->GetStyle()|WB_HASBUTTONS|WB_HASBUTTONSATROOT|
- WB_CLIPCHILDREN|WB_HSCROLL);
+ WB_CLIPCHILDREN|WB_HSCROLL|WB_TABSTOP);
// Handler
Link<ToolBox *, void> aLk = LINK(this, SwNavigationPI, ToolBoxSelectHdl);