Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Re-add IME support #762

Merged
merged 14 commits into from
Nov 30, 2024
Prev Previous commit
Next Next commit
Remove dbg!()
tomcur committed Nov 29, 2024
commit 03aa8298c736fc374f20d04a8520db992e1b18ee
2 changes: 1 addition & 1 deletion masonry/src/widget/text_area.rs
Original file line number Diff line number Diff line change
@@ -750,7 +750,7 @@ impl<const EDITABLE: bool> Widget for TextArea<EDITABLE> {

ctx.set_handled();
if let Some(text) = submit_text {
ctx.submit_action(dbg!(crate::Action::TextChanged(text)));
ctx.submit_action(crate::Action::TextChanged(text));
}
let new_generation = self.editor.generation();
if new_generation != self.rendered_generation {