diff options
author | Gülşah Köse <gulsah.kose@collabora.com> | 2024-02-27 13:07:18 +0300 |
---|---|---|
committer | Gülşah Köse <gulsah.kose@collabora.com> | 2024-02-27 21:49:17 +0100 |
commit | d52dfa7ecbf9cb50a4007b44af9cd23ad08c5d8e (patch) | |
tree | da67f43cac8cfb9bb13786c06218be071491533d | |
parent | 2a2a9c179801f3dff95ac44468b1d61795677090 (diff) |
Online: Prevent hiding tooltips due to other users action.
Other user's actions like reloading reopening or refreshing
document causes hiding other user function tooltips.
Signed-off-by: Gülşah Köse <gulsah.kose@collabora.com>
Change-Id: I0aeb0aeb98182398e4740c71cfd65c4df2c51ba6
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/163978
Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com>
-rw-r--r-- | sc/source/ui/app/inputhdl.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sc/source/ui/app/inputhdl.cxx b/sc/source/ui/app/inputhdl.cxx index 62a7d7b9bf09..5d45d930b3eb 100644 --- a/sc/source/ui/app/inputhdl.cxx +++ b/sc/source/ui/app/inputhdl.cxx @@ -4446,7 +4446,9 @@ void ScInputHandler::NotifyChange( const ScInputHdlState* pState, pDelayTimer->Start(); } - HideTip(); + // Don't hide function tooltip in LOK, a remote user might be using tip. + if (bStopEditing) + HideTip(); HideTipBelow(); bInOwnChange = false; } |