diff options
author | Caolán McNamara <caolanm@redhat.com> | 2017-09-12 12:12:19 +0100 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2017-09-14 16:07:23 +0200 |
commit | 74a8c6e6f0d426c521b6d5d02eefd87289b79839 (patch) | |
tree | e753ed23f800a0321b12674efb71522546b1060d /svx | |
parent | da033662525304b3351b0ed6b38363380b905bd5 (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>
(cherry picked from commit a3ea07e14bab234ee04c441e0dca7a9d12dc7a9b)
Diffstat (limited to 'svx')
-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 c6acafaffbe0..2138b00d9cd7 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 ); |