diff options
author | Caolán McNamara <caolanm@redhat.com> | 2017-09-12 12:12:19 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2017-09-13 16:11:46 +0200 |
commit | a3ea07e14bab234ee04c441e0dca7a9d12dc7a9b (patch) | |
tree | 75d62835391881db64b5aab557c66bd56e1788fa | |
parent | 9b3e2486d8e96b6fdd844fbdb5fa59c7782e82ee (diff) |
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@libreoffice.org>
Reviewed-by: Michael Stahl <mstahl@redhat.com>
-rw-r--r-- | svx/source/tbxctrls/layctrl.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
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 ); |