diff options
author | Marco Cecchetti <marco.cecchetti@collabora.com> | 2017-05-02 18:10:41 +0200 |
---|---|---|
committer | Jan Holesovsky <kendy@collabora.com> | 2017-05-16 13:17:21 +0200 |
commit | 1e48666b6c007fdf8f354a1a50e51f8f1e906b87 (patch) | |
tree | bfce054a5d99f75ca6d686d86b5406884da4c8ac /sc | |
parent | cb33a0fb8b7d9fcdf7ef26ac690842574d359f4b (diff) |
lok: sc: fix for row/col header updating on changing tab
When you switch tab the current row/col header needs to be
invalidated.
Change-Id: I26ef6f9990726f3c96ddfc9ac45472fafc8e8507
Reviewed-on: https://gerrit.libreoffice.org/37242
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Jan Holesovsky <kendy@collabora.com>
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/view/tabview3.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sc/source/ui/view/tabview3.cxx b/sc/source/ui/view/tabview3.cxx index f789a34021e5..75da8d86159e 100644 --- a/sc/source/ui/view/tabview3.cxx +++ b/sc/source/ui/view/tabview3.cxx @@ -2004,6 +2004,8 @@ void ScTabView::OnLibreOfficeKitTabChanged() }; SfxLokHelper::forEachOtherView(pThisViewShell, lTabSwitch); + + pThisViewShell->libreOfficeKitViewCallback(LOK_CALLBACK_INVALIDATE_HEADER, "all"); } } |