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() {
window.read_with(cx, |cx| {
let identifier = if self.filename_editor.is_focused(cx) {
"editing"
} else {
"not_editing"
if !self.filename_editor.is_focused(cx) {
keymap.add_identifier("not_editing");
};
keymap.add_identifier(identifier);
});
}
}