commit c5634dac9134f7574e8894295d5ed05f7439b312
parent d576082297c8be5daf6c52b92568fb840ac2a957
Author: William Casarin <jb55@jb55.com>
Date: Mon, 10 Jun 2024 06:10:33 -0700
set tooltip delay to 100ms
so that we don't accidently pop it up all the time
Signed-off-by: William Casarin <jb55@jb55.com>
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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()
};