project_panel: Only show sticky item shadow when list is scrolled (#34050)

Follow up: https://github.com/zed-industries/zed/pull/34042

- Removes `top_slot_items` from `uniform_list` in favor of using
existing `decorations`
- Add condition to only show shadow for sticky item when list is
scrolled and scrollable

Release Notes:

- N/A
This commit is contained in:
Smit Barmase 2025-07-08 14:22:24 +05:30 committed by GitHub
parent f1db3b4e1d
commit 1f3575ad6e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 180 additions and 178 deletions

View file

@ -147,6 +147,7 @@ mod uniform_list {
&self,
visible_range: Range<usize>,
bounds: Bounds<Pixels>,
_scroll_offset: Point<Pixels>,
item_height: Pixels,
item_count: usize,
window: &mut Window,