Cancel pending rename when hitting escape

This commit is contained in:
Antonio Scandurra
2022-02-18 15:24:24 +01:00
parent 3a6fb0a8fe
commit 62e5947b76

View File

@@ -1452,6 +1452,10 @@ impl Editor {
}
pub fn cancel(&mut self, _: &Cancel, cx: &mut ViewContext<Self>) {
if self.take_rename(cx).is_some() {
return;
}
if self.hide_context_menu(cx).is_some() {
return;
}