Fix panel.background color override (#21559)

Closes #21266

Release Notes:

- Fixes not using the `panel.background` color in the file tree

See comments in https://github.com/zed-industries/zed/issues/21266 for
more details.

Co-authored-by: Danilo Leal <daniloleal09@gmail.com>
This commit is contained in:
Nils Koch
2024-12-06 09:17:24 -03:00
committed by GitHub
co-authored by Danilo Leal
parent 7e40addb5f
commit 4b16b73f80
+1 -1
View File
@@ -268,7 +268,7 @@ fn get_item_color(cx: &ViewContext<ProjectPanel>) -> ItemColors {
let colors = cx.theme().colors();
ItemColors {
default: colors.surface_background,
default: colors.panel_background,
hover: colors.ghost_element_hover,
drag_over: colors.drop_target_background,
marked_active: colors.ghost_element_selected,