Avoid unnecessary match

This commit is contained in:
Joseph T. Lyons 2023-12-13 21:43:21 -05:00
parent 4f196f66fc
commit 837b4c3462

View file

@ -160,10 +160,8 @@ impl FeedbackModal {
editor
});
cx.subscribe(
&feedback_editor,
|this, editor, event: &EditorEvent, cx| match event {
EditorEvent::Edited => {
cx.subscribe(&feedback_editor, |this, editor, event: &EditorEvent, cx| {
if *event == EditorEvent::Edited {
this.character_count = editor
.read(cx)
.buffer()
@ -174,9 +172,7 @@ impl FeedbackModal {
.len() as i32;
cx.notify();
}
_ => {}
},
)
})
.detach();
Self {