Make pane active when activating one of its items

This commit is contained in:
Antonio Scandurra 2022-03-02 16:52:35 +01:00
parent 9d18f4a18a
commit 07c780bd72
2 changed files with 9 additions and 6 deletions

View file

@ -326,6 +326,7 @@ impl Pane {
}
self.update_active_toolbar(cx);
self.focus_active_item(cx);
self.activate(cx);
cx.notify();
}
}

View file

@ -1028,6 +1028,7 @@ impl Workspace {
}
fn activate_pane(&mut self, pane: ViewHandle<Pane>, cx: &mut ViewContext<Self>) {
if self.active_pane != pane {
self.active_pane = pane;
self.status_bar.update(cx, |status_bar, cx| {
status_bar.set_active_pane(&self.active_pane, cx);
@ -1035,6 +1036,7 @@ impl Workspace {
cx.focus(&self.active_pane);
cx.notify();
}
}
fn handle_pane_event(
&mut self,