sc/source/ui/view/tabvwsh4.cxx |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

New commits:
commit 41237d2910ef4a77387471affc3472300bc10836
Author:     Szymon Kłos <szymon.k...@collabora.com>
AuthorDate: Mon Feb 26 15:39:30 2024 +0100
Commit:     Szymon Kłos <szymon.k...@collabora.com>
CommitDate: Mon Feb 26 16:38:55 2024 +0100

    lok: don't hide tooltim on every action
    
    Signed-off-by: Szymon Kłos <szymon.k...@collabora.com>
    Change-Id: I62f69071a4857f7413a995da1ff9fc6ba2f942d2
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/163947
    Reviewed-by: Gülşah Köse <gulsah.k...@collabora.com>
    Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoff...@gmail.com>

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
     }
 }

Reply via email to