summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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
}
}