sc/source/ui/app/inputhdl.cxx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-)
New commits: commit 73d3ee33f80c8e46a7002ec538eef23a69842135 Author: Gülşah Köse <gulsah.k...@collabora.com> AuthorDate: Tue Feb 27 13:07:18 2024 +0300 Commit: Gülşah Köse <gulsah.k...@collabora.com> CommitDate: Tue Feb 27 21:35:22 2024 +0100 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.k...@collabora.com> Change-Id: I0aeb0aeb98182398e4740c71cfd65c4df2c51ba6 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/163979 Reviewed-by: Szymon Kłos <szymon.k...@collabora.com> Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoff...@gmail.com> diff --git a/sc/source/ui/app/inputhdl.cxx b/sc/source/ui/app/inputhdl.cxx index aede676ebdde..c03d36aab311 100644 --- a/sc/source/ui/app/inputhdl.cxx +++ b/sc/source/ui/app/inputhdl.cxx @@ -4451,7 +4451,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; }