diff options
author | Caolán McNamara <caolanm@redhat.com> | 2020-08-06 21:10:07 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2020-08-08 14:58:41 +0200 |
commit | f43078e028c146041bedbd0a53826bf372074b5e (patch) | |
tree | a4a5591818fc4ecb9f315425c4caa8aad32cc061 /vcl/source | |
parent | 4ea3ac6bba777111bf8656b6911068c59248382a (diff) |
don't make InterItemWindow a WB_DIALOGCONTROL
which means pressing tab searches it children, let it be the target, and it
will delegate focus
Change-Id: I353ae6b5a6b62c91b844fcd10508f8689db77038
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/100298
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'vcl/source')
-rw-r--r-- | vcl/source/control/InterimItemWindow.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/control/InterimItemWindow.cxx b/vcl/source/control/InterimItemWindow.cxx index e32bf52eb907..5e7c189fdd28 100644 --- a/vcl/source/control/InterimItemWindow.cxx +++ b/vcl/source/control/InterimItemWindow.cxx @@ -12,7 +12,7 @@ InterimItemWindow::InterimItemWindow(vcl::Window* pParent, const OUString& rUIXMLDescription, const OString& rID, sal_uInt64 nLOKWindowId) - : Control(pParent, WB_TABSTOP | WB_DIALOGCONTROL) + : Control(pParent, WB_TABSTOP) , m_pWidget(nullptr) // inheritors are expected to call InitControlBase { m_aLayoutIdle.SetPriority(TaskPriority::RESIZE); |