sd/source/ui/dlg/PaneChildWindows.cxx |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

New commits:
commit 418b6589752525a9937089a73f0e116109b27657
Author:     Caolán McNamara <caol...@redhat.com>
AuthorDate: Fri Dec 13 14:31:33 2019 +0000
Commit:     Caolán McNamara <caol...@redhat.com>
CommitDate: Fri Dec 13 17:51:18 2019 +0100

    Resolves: tdf#129347 ensure impress docking window has enabled input
    
    the default inputmode is taken from the parent, if the templates dialog is 
open
    when the sidebar is created then the template dialog has set the toplevel
    window disabled-input
    
    Change-Id: I27cd0a6d6127cc2033a2304c27d72b88f16b0b1a
    Reviewed-on: https://gerrit.libreoffice.org/85119
    Tested-by: Jenkins
    Reviewed-by: Caolán McNamara <caol...@redhat.com>
    Tested-by: Caolán McNamara <caol...@redhat.com>

diff --git a/sd/source/ui/dlg/PaneChildWindows.cxx 
b/sd/source/ui/dlg/PaneChildWindows.cxx
index d4d4bab39d5d..b44e128823bf 100644
--- a/sd/source/ui/dlg/PaneChildWindows.cxx
+++ b/sd/source/ui/dlg/PaneChildWindows.cxx
@@ -50,7 +50,9 @@ PaneChildWindow::PaneChildWindow (
         pParentWindow,
         SdResId(pTitleBarResId)));
     SetAlignment(SfxChildAlignment::LEFT);
-    static_cast<SfxDockingWindow*>(GetWindow())->Initialize(pInfo);
+    SfxDockingWindow* pDockingWindow = 
static_cast<SfxDockingWindow*>(GetWindow());
+    pDockingWindow->EnableInput();
+    pDockingWindow->Initialize(pInfo);
     SetHideNotDelete(true);
 
     ViewShellBase* pBase = 
ViewShellBase::GetViewShellBase(pBindings->GetDispatcher()->GetFrame());
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to