Remove unnecessary identifier

This commit is contained in:
Joseph T. Lyons 2023-12-01 11:49:55 -05:00
parent ee869baea6
commit cf60642f39

View file

@ -1633,13 +1633,9 @@ impl View for ProjectPanel {
if let Some(window) = cx.active_window() { if let Some(window) = cx.active_window() {
window.read_with(cx, |cx| { window.read_with(cx, |cx| {
let identifier = if self.filename_editor.is_focused(cx) { if !self.filename_editor.is_focused(cx) {
"editing" keymap.add_identifier("not_editing");
} else {
"not_editing"
}; };
keymap.add_identifier(identifier);
}); });
} }
} }