assistant panel: Update active tab in config panel when provider changes (#15621)
Release Notes: - N/A Co-authored-by: Bennet <bennet@zed.dev>
This commit is contained in:
parent
6c83c7906a
commit
ed7952f5ef
1 changed files with 9 additions and 0 deletions
|
@ -929,6 +929,15 @@ impl AssistantPanel {
|
|||
if let Some(configuration_item_ix) = configuration_item_ix {
|
||||
self.pane.update(cx, |pane, cx| {
|
||||
pane.activate_item(configuration_item_ix, true, true, cx);
|
||||
if let Some((item, provider)) =
|
||||
pane.item_for_index(configuration_item_ix).zip(provider)
|
||||
{
|
||||
if let Some(view) = item.downcast::<ConfigurationView>() {
|
||||
view.update(cx, |view, cx| {
|
||||
view.set_active_tab(provider, cx);
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
} else {
|
||||
let configuration = cx.new_view(|cx| {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue