Skip to content

Commit

Permalink
Fix unreachable warning message
Browse files Browse the repository at this point in the history
  • Loading branch information
DJMcNab committed Nov 21, 2024
1 parent 4e0473c commit 0fc07ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion masonry/src/widget/text_area.rs
Original file line number Diff line number Diff line change
Expand Up @@ -705,7 +705,7 @@ impl<const EDITABLE: bool> Widget for TextArea<EDITABLE> {
TextEvent::FocusChange(_) => {}
TextEvent::Ime(e) => {
// TODO: Handle the cursor movement things from https://github.com/rust-windowing/winit/pull/3824
tracing::warn!(event = ?e, "Prose doesn't accept IME");
tracing::warn!(event = ?e, "TextArea doesn't accept IME");
}
TextEvent::ModifierChange(_) => {}
}
Expand Down

0 comments on commit 0fc07ff

Please sign in to comment.