sc/source/ui/app/scmod.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit bf74427bce9fff4370394d82dab62e0554109c36
Author:     Henry Castro <hcas...@collabora.com>
AuthorDate: Thu May 9 23:28:23 2019 -0400
Commit:     Jan Holesovsky <ke...@collabora.com>
CommitDate: Fri Jun 14 20:23:57 2019 +0200

    lok: avoid locking table when ScSpecialFilterDlg is destroyed
    
    ScSpecialFilterDlg by default does not lock the table, but in tiled
    rendering case, switching sheets are locked when the dialog is closed
    
    Thanks Michael Meeks for debugging
    
    Change-Id: Ifa32fd63085f3e082b97ad0313dff7b826b95d2e
    Reviewed-on: https://gerrit.libreoffice.org/72074
    Reviewed-by: Jan Holesovsky <ke...@collabora.com>
    Tested-by: Jan Holesovsky <ke...@collabora.com>
    (cherry picked from commit c5457de07e9d6e6a202f577067cf2a0f904bfcd0)
    Reviewed-on: https://gerrit.libreoffice.org/72096
    Tested-by: Jenkins

diff --git a/sc/source/ui/app/scmod.cxx b/sc/source/ui/app/scmod.cxx
index 76faf343953c..8faa371895ce 100644
--- a/sc/source/ui/app/scmod.cxx
+++ b/sc/source/ui/app/scmod.cxx
@@ -1621,7 +1621,7 @@ bool ScModule::IsTableLocked()
                     bLocked = pRefDlg->IsTableLocked();
             }
         }
-        else
+        else if (!comphelper::LibreOfficeKit::isActive())
             bLocked = true;     // for other views, see IsModalMode
     }
 
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to