From d6f173866e2f89e2f4b63a747109f8756fbf912f Mon Sep 17 00:00:00 2001 From: Nate Butler Date: Sat, 18 Nov 2023 01:02:40 -0500 Subject: [PATCH] Use muted color for fold indicators --- crates/editor2/src/editor.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/editor2/src/editor.rs b/crates/editor2/src/editor.rs index ee72f318ca620e38563c8c74ae0feaf8fa75e453..beed93e91761566400b8a3d8bb0ae92dd786ed4a 100644 --- a/crates/editor2/src/editor.rs +++ b/crates/editor2/src/editor.rs @@ -4401,6 +4401,7 @@ impl Editor { editor.fold_at(&FoldAt { buffer_row }, cx); } }) + .color(ui::TextColor::Muted) .render() }) })