From d484d80238ccf96f70ede99ba8eb6d6149a6c0cf Mon Sep 17 00:00:00 2001 From: Nathan Sobo Date: Wed, 4 Aug 2021 16:17:33 -0600 Subject: [PATCH] Match file finder icon color to label color --- zed/src/file_finder.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/zed/src/file_finder.rs b/zed/src/file_finder.rs index bacba1ee2a..f5bacbd452 100644 --- a/zed/src/file_finder.rs +++ b/zed/src/file_finder.rs @@ -157,7 +157,9 @@ impl FileFinder { LineBox::new( settings.ui_font_family, settings.ui_font_size, - Svg::new("icons/file-16.svg").boxed(), + Svg::new("icons/file-16.svg") + .with_color(style.label.text.color) + .boxed(), ) .boxed(), )