mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-28 20:01:33 +00:00
Merge pull request #517 from zed-industries/activate-pane-when-activating-item
Make pane active when activating one of its items
This commit is contained in:
commit
a9cc8b46e4
2 changed files with 9 additions and 6 deletions
|
@ -326,6 +326,7 @@ impl Pane {
|
|||
}
|
||||
self.update_active_toolbar(cx);
|
||||
self.focus_active_item(cx);
|
||||
self.activate(cx);
|
||||
cx.notify();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1028,12 +1028,14 @@ impl Workspace {
|
|||
}
|
||||
|
||||
fn activate_pane(&mut self, pane: ViewHandle<Pane>, cx: &mut ViewContext<Self>) {
|
||||
self.active_pane = pane;
|
||||
self.status_bar.update(cx, |status_bar, cx| {
|
||||
status_bar.set_active_pane(&self.active_pane, cx);
|
||||
});
|
||||
cx.focus(&self.active_pane);
|
||||
cx.notify();
|
||||
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);
|
||||
});
|
||||
cx.focus(&self.active_pane);
|
||||
cx.notify();
|
||||
}
|
||||
}
|
||||
|
||||
fn handle_pane_event(
|
||||
|
|
Loading…
Reference in a new issue