1
0
mirror of https://github.com/emilk/egui.git synced 2026-06-27 15:13:12 -04:00

Fix tooltip delay, bug introduced in #4784

This commit is contained in:
Emil Ernerfeldt
2024-07-05 10:27:11 +02:00
parent 2e2366e88d
commit 1059e0e7f1

View File

@@ -718,7 +718,7 @@ impl Response {
let time_since_last_interaction = self.ctx.input(|i| {
i.time_since_last_scroll()
.max(i.pointer.time_since_last_movement())
.min(i.pointer.time_since_last_movement())
});
let time_til_tooltip = tooltip_delay - time_since_last_interaction;