diff options
author | Michael Meeks <michael.meeks@collabora.com> | 2019-12-04 22:29:10 +0000 |
---|---|---|
committer | Michael Meeks <michael.meeks@collabora.com> | 2019-12-09 10:42:14 +0100 |
commit | 53a647afa68264422d556156b4e77e1b6f46a996 (patch) | |
tree | 9bda90be096aaadbe2f30aaae71a91f7fd8ad302 /sc/source/ui/unoobj | |
parent | 3cd30978ebfbde5425038281252e9b85ef3a3c48 (diff) |
lok: calc - update our version of the other view's selections on zoom.
Change-Id: I8487f28d762c8bf5be4f00a331263218dc71d179
Reviewed-on: https://gerrit.libreoffice.org/84694
Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com>
Reviewed-by: Michael Meeks <michael.meeks@collabora.com>
(cherry picked from commit 2986620074d104611a6e78c98ee5a09941866125)
Reviewed-on: https://gerrit.libreoffice.org/84698
Tested-by: Jenkins
Diffstat (limited to 'sc/source/ui/unoobj')
-rw-r--r-- | sc/source/ui/unoobj/docuno.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sc/source/ui/unoobj/docuno.cxx b/sc/source/ui/unoobj/docuno.cxx index 04c5bcbe400f..cae9343550f6 100644 --- a/sc/source/ui/unoobj/docuno.cxx +++ b/sc/source/ui/unoobj/docuno.cxx @@ -886,6 +886,9 @@ void ScModelObj::setClientZoom(int nTilePixelWidth_, int nTilePixelHeight_, int pViewData->SetZoom(Fraction(nTilePixelWidth_ * TWIPS_PER_PIXEL, nTileTwipWidth_), Fraction(nTilePixelHeight_ * TWIPS_PER_PIXEL, nTileTwipHeight_), true); + + // refresh our view's take on other view's cursors + pViewData->GetActiveWin()->updateKitOtherCursors(); } OUString ScModelObj::getRowColumnHeaders(const tools::Rectangle& rRectangle) |