From c5634dac9134f7574e8894295d5ed05f7439b312 Mon Sep 17 00:00:00 2001 From: William Casarin Date: Mon, 10 Jun 2024 06:10:33 -0700 Subject: [PATCH] set tooltip delay to 100ms so that we don't accidently pop it up all the time Signed-off-by: William Casarin --- src/app_style.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app_style.rs b/src/app_style.rs index 16cbedc0..1e1a57fe 100644 --- a/src/app_style.rs +++ b/src/app_style.rs @@ -63,7 +63,7 @@ pub fn create_custom_style(ctx: &Context, font_size: fn(&NotedeckTextStyle) -> f .collect(); style.interaction = Interaction { - tooltip_delay: 0.0, + tooltip_delay: 0.1, show_tooltips_only_when_still: false, ..Interaction::default() };