Run cargo fmt and fix lints
This commit is contained in:
parent
7db5256b72
commit
0c6d4eb23f
3 changed files with 17 additions and 23 deletions
|
|
@ -186,10 +186,8 @@ where
|
|||
WindowEvent::ModifiersChanged(new_modifiers) => {
|
||||
self.modifiers = new_modifiers.state();
|
||||
}
|
||||
WindowEvent::Ime(ime) => {
|
||||
if let Ime::Preedit(text, _) = ime {
|
||||
self.preedit = text.clone();
|
||||
}
|
||||
WindowEvent::Ime(Ime::Preedit(text, _)) => {
|
||||
self.preedit = text.clone();
|
||||
}
|
||||
#[cfg(feature = "debug")]
|
||||
WindowEvent::KeyboardInput {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue