From f46f5571096a867469386a9b51a4985b4efdbf07 Mon Sep 17 00:00:00 2001 From: Palash Baderia Date: Tue, 11 Oct 2022 17:50:27 +0530 Subject: [PATCH] tippy: Add delay for recipient bar icons. This commit adds a long hover delay [750,20] to recipient bar icons. Doing this prevents the situation when the tippy tooltips are left floating when the icons suddenly disappear as you enter the topics according to the organization settings and the references are removed. Adding an additional delay ensures that the icons disappear and then the tooltips appear. --- web/src/tippyjs.js | 1 + 1 file changed, 1 insertion(+) diff --git a/web/src/tippyjs.js b/web/src/tippyjs.js index 6894da949c..0272e43203 100644 --- a/web/src/tippyjs.js +++ b/web/src/tippyjs.js @@ -416,6 +416,7 @@ export function initialize() { }); message_list_tooltip([".recipient_bar_icon"], { + delay: LONG_HOVER_DELAY, onHidden(instance) { instance.destroy(); },