svx/source/tbxctrls/layctrl.cxx | 2 ++ 1 file changed, 2 insertions(+)
New commits: commit a3ea07e14bab234ee04c441e0dca7a9d12dc7a9b Author: Caolán McNamara <[email protected]> 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 <[email protected]> Reviewed-by: Michael Stahl <[email protected]> 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 );
_______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
