Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jprochazk committed May 28, 2024
1 parent fd3af1a commit 2994ae9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/eframe/src/web/text_agent.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ impl TextAgent {

let on_composition_start = {
let input = input.clone();
move |event: web_sys::CompositionEvent, runner: &mut AppRunner| {
move |_: web_sys::CompositionEvent, runner: &mut AppRunner| {
input.set_value("");
let event = egui::Event::Ime(egui::ImeEvent::Enabled);
runner.input.raw.events.push(event);
Expand Down

0 comments on commit 2994ae9

Please sign in to comment.