[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-6.0' - sc/source

Henry Castro (via logerrit) logerrit at kemper.freedesktop.org
Fri May 10 07:10:38 UTC 2019


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

New commits:
commit c5457de07e9d6e6a202f577067cf2a0f904bfcd0
Author:     Henry Castro <hcastro at collabora.com>
AuthorDate: Thu May 9 23:28:23 2019 -0400
Commit:     Jan Holesovsky <kendy at collabora.com>
CommitDate: Fri May 10 09:10:05 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 <kendy at collabora.com>
    Tested-by: Jan Holesovsky <kendy at collabora.com>

diff --git a/sc/source/ui/app/scmod.cxx b/sc/source/ui/app/scmod.cxx
index 4b9e46b957ad..33612db77f9d 100644
--- a/sc/source/ui/app/scmod.cxx
+++ b/sc/source/ui/app/scmod.cxx
@@ -1615,7 +1615,7 @@ bool ScModule::IsTableLocked()
                 bLocked = pRefDlg->IsTableLocked();
             }
         }
-        else
+        else if (!comphelper::LibreOfficeKit::isActive())
             bLocked = true;     // for other views, see IsModalMode
     }
 


More information about the Libreoffice-commits mailing list