[Libreoffice-commits] core.git: Branch 'libreoffice-5-3' - svx/source

Caolán McNamara caolanm at redhat.com
Wed Sep 13 14:12:13 UTC 2017


 svx/source/tbxctrls/layctrl.cxx |    2 ++
 1 file changed, 2 insertions(+)

New commits:
commit a3ea07e14bab234ee04c441e0dca7a9d12dc7a9b
Author: Caolán McNamara <caolanm at redhat.com>
Date:   Tue Sep 12 12:12:19 2017 +0100

    Resolves: tdf#106163 safe fix for wrong final row/col selection in rtl
    
    Change-Id: I773de03768b0a5b28e6b4f63bd65dd270dc975cd
    Reviewed-on: https://gerrit.libreoffice.org/42199
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Michael Stahl <mstahl at redhat.com>

diff --git a/svx/source/tbxctrls/layctrl.cxx b/svx/source/tbxctrls/layctrl.cxx
index b0e707f58cfe..d0bcb9cb3eb4 100644
--- a/svx/source/tbxctrls/layctrl.cxx
+++ b/svx/source/tbxctrls/layctrl.cxx
@@ -161,6 +161,8 @@ void TableWindow::dispose()
 void TableWindow::MouseMove( const MouseEvent& rMEvt )
 {
     SfxPopupWindow::MouseMove( rMEvt );
+    if (IsInCleanUp())
+        return;
     Point aPos = rMEvt.GetPosPixel();
     Point aMousePos( aPos );
 


More information about the Libreoffice-commits mailing list