mirror of
https://github.com/emilk/egui.git
synced 2026-06-27 07:03:14 -04:00
Fixed backspace repeat with TextEdit (#2416)
This commit is contained in:
@@ -919,6 +919,10 @@ fn events(
|
||||
modifiers,
|
||||
} => on_key_press(&mut cursor_range, text, galley, *key, modifiers),
|
||||
|
||||
Event::KeyRepeat { key, modifiers } => {
|
||||
on_key_press(&mut cursor_range, text, galley, *key, modifiers)
|
||||
}
|
||||
|
||||
Event::CompositionStart => {
|
||||
state.has_ime = true;
|
||||
None
|
||||
|
||||
Reference in New Issue
Block a user