summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSzymon Kłos <szymon.klos@collabora.com>2024-02-26 15:39:30 +0100
committerSzymon Kłos <szymon.klos@collabora.com>2024-02-26 16:38:55 +0100
commit41237d2910ef4a77387471affc3472300bc10836 (patch)
treebf519b65763b9eb7639e4fb893e1e1a402554f40
parent145188f674ccf2a0e485ba85a018b04ef21fcf53 (diff)
lok: don't hide tooltim on every action
Signed-off-by: Szymon Kłos <szymon.klos@collabora.com> Change-Id: I62f69071a4857f7413a995da1ff9fc6ba2f942d2 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/163947 Reviewed-by: Gülşah Köse <gulsah.kose@collabora.com> Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com>
-rw-r--r--sc/source/ui/view/tabvwsh4.cxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/sc/source/ui/view/tabvwsh4.cxx b/sc/source/ui/view/tabvwsh4.cxx
index 2ff01b9f83e3..b83cbd27a31c 100644
--- a/sc/source/ui/view/tabvwsh4.cxx
+++ b/sc/source/ui/view/tabvwsh4.cxx
@@ -268,7 +268,9 @@ void ScTabViewShell::Deactivate(bool bMDI)
{
HideNoteMarker(); // note marker
- if ( pHdl )
+ // in LOK case this could be trigerred on every action from other view (doc_setView)
+ // we don't want to hide tooltip only because other view did some action
+ if ( pHdl && !comphelper::LibreOfficeKit::isActive() )
pHdl->HideTip(); // Hide formula auto input tip
}
}