diff options
author | Muhammet Kara <muhammet.kara@pardus.org.tr> | 2018-03-16 16:40:59 +0300 |
---|---|---|
committer | Muhammet Kara <muhammet.kara@pardus.org.tr> | 2018-03-18 19:52:01 +0100 |
commit | 86b160886f6d5580a84f5008682cc93fa8c63e39 (patch) | |
tree | 2ee768e8736aef91b4caa8179d4b7863b85eff46 /cui/source/customize | |
parent | 5204a5145d8232ea0650144fb4756c38303ef06e (diff) |
tdf#115511: Make the description field keyboard-accessible
in the Customize dialog. By setting an accelerator key, and
also manually setting the WB_TABSTOP bit to include it in the
tab navigation.
Change-Id: I02ce9e2e78404401c9fc124df07f4f0c0b1e110e
Reviewed-on: https://gerrit.libreoffice.org/51426
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Heiko Tietze <tietze.heiko@gmail.com>
Tested-by: Heiko Tietze <tietze.heiko@gmail.com>
Diffstat (limited to 'cui/source/customize')
-rw-r--r-- | cui/source/customize/cfg.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cui/source/customize/cfg.cxx b/cui/source/customize/cfg.cxx index 515088d11916..078a06c16c77 100644 --- a/cui/source/customize/cfg.cxx +++ b/cui/source/customize/cfg.cxx @@ -1167,6 +1167,7 @@ SvxConfigPage::SvxConfigPage(vcl::Window *pParent, const SfxItemSet& rSet) m_pDescriptionField->SetControlBackground( GetSettings().GetStyleSettings().GetDialogColor() ); m_pDescriptionField->EnableCursor( false ); + m_pDescriptionField->SetStyle( m_pDescriptionField->GetStyle() | WB_TABSTOP ); // Include in the tab sequence m_pSearchEdit->SetUpdateDataHdl ( LINK( this, SvxConfigPage, SearchUpdateHdl )); m_pSearchEdit->EnableUpdateData(); |