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

New commits:
commit d0873e6c0faff565fabd50767a03e709653c039d
Author:     Szymon Kłos <szymon.k...@collabora.com>
AuthorDate: Mon Feb 26 15:39:30 2024 +0100
Commit:     Gülşah Köse <gulsah.k...@collabora.com>
CommitDate: Tue Feb 27 17:13:04 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/+/163977
    Tested-by: Jenkins
    Reviewed-by: Gülşah Köse <gulsah.k...@collabora.com>

diff --git a/sc/source/ui/view/tabvwsh4.cxx b/sc/source/ui/view/tabvwsh4.cxx
index da9ce6851087..8236256b25e8 100644
--- a/sc/source/ui/view/tabvwsh4.cxx
+++ b/sc/source/ui/view/tabvwsh4.cxx
@@ -270,7 +270,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