[Libreoffice-commits] core.git: sw/source

Jim Raykowski raykowj at gmail.com
Fri Feb 9 11:08:31 UTC 2018


 sw/source/uibase/utlui/navipi.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 6f511f1dec1fe4a5bc6d6e2dc116eb9886c24bda
Author: Jim Raykowski <raykowj at gmail.com>
Date:   Tue Feb 6 17:21:59 2018 -0900

    tdf#115504 Add tabstop to Sidebar Navigator deck content trees
    
    Change-Id: Ie006e01ea6179b94cca77354437678ff90e1bbd6
    Reviewed-on: https://gerrit.libreoffice.org/49400
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Katarina Behrens <Katarina.Behrens at cib.de>

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);


More information about the Libreoffice-commits mailing list