pane: Fix scrolling to items when there are pinned tabs (#17444)

Closes #ISSUE

Release Notes:

- N/A
This commit is contained in:
Piotr Osiewicz 2024-09-05 20:51:16 +02:00 committed by GitHub
parent d6ab569e42
commit b887f8df8c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1013,7 +1013,11 @@ impl Pane {
self.focus_active_item(cx);
}
self.tab_bar_scroll_handle.scroll_to_item(index);
if !self.is_tab_pinned(index) {
self.tab_bar_scroll_handle
.scroll_to_item(index - self.pinned_tab_count);
}
cx.notify();
}
}