diff options
author | Katarina Behrens <Katarina.Behrens@cib.de> | 2018-02-07 10:07:42 +0100 |
---|---|---|
committer | Katarina Behrens <Katarina.Behrens@cib.de> | 2018-02-07 16:45:00 +0100 |
commit | e7c0684216f5d6ba01a30099829b9248756b5b62 (patch) | |
tree | 7e4470f872629988d9d4b191fdd6fc531234213d | |
parent | 5b2b1ee3f3036c64f1343e4544bf7fb7d4ccdfed (diff) |
tdf#115040: selected condition is now Tab-reachable
this also prevents Tab focus from jumping out of the condition
list unexpectedly
Change-Id: I03247e49eee3bd6ee34a758e01578e821f7f9742
Reviewed-on: https://gerrit.libreoffice.org/49343
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Katarina Behrens <Katarina.Behrens@cib.de>
-rw-r--r-- | sc/source/ui/condformat/condformatdlgentry.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/condformat/condformatdlgentry.cxx b/sc/source/ui/condformat/condformatdlgentry.cxx index 230deaa5df6a..48e77718a9c0 100644 --- a/sc/source/ui/condformat/condformatdlgentry.cxx +++ b/sc/source/ui/condformat/condformatdlgentry.cxx @@ -39,7 +39,7 @@ #include <set> ScCondFrmtEntry::ScCondFrmtEntry(vcl::Window* pParent, ScDocument* pDoc, const ScAddress& rPos) - : VclContainer(pParent, WB_CLIPCHILDREN | WB_BORDER) + : VclContainer(pParent, WB_CLIPCHILDREN | WB_BORDER | WB_CHILDDLGCTRL) , mbActive(false) , maStrCondition(ScResId(SCSTR_CONDITION)) , mpDoc(pDoc) |