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

Caolán McNamara (via logerrit) logerrit at kemper.freedesktop.org
Sat Aug 8 12:59:16 UTC 2020


 vcl/source/control/InterimItemWindow.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit f43078e028c146041bedbd0a53826bf372074b5e
Author:     Caolán McNamara <caolanm at redhat.com>
AuthorDate: Thu Aug 6 21:10:07 2020 +0100
Commit:     Caolán McNamara <caolanm at redhat.com>
CommitDate: Sat Aug 8 14:58:41 2020 +0200

    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 at redhat.com>

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


More information about the Libreoffice-commits mailing list