mirror of
https://github.com/emilk/egui.git
synced 2026-06-26 22:53:14 -04:00
Usually input events automatically trigger a repaint. But since consume_key would remove the event egui would think there were no events and not trigger a repaint. This fixes it by setting a flag on InputState on consume_key. * related: https://github.com/rerun-io/rerun/issues/10165