sc/source/ui/app/inputhdl.cxx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-)
New commits: commit 73d3ee33f80c8e46a7002ec538eef23a69842135 Author: Gülşah Köse <[email protected]> AuthorDate: Tue Feb 27 13:07:18 2024 +0300 Commit: Gülşah Köse <[email protected]> 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 <[email protected]> Change-Id: I0aeb0aeb98182398e4740c71cfd65c4df2c51ba6 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/163979 Reviewed-by: Szymon Kłos <[email protected]> Tested-by: Jenkins CollaboraOffice <[email protected]> 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; }
