From 7f4d03fab2d27e7dad4e97bf538b546fe21dd516 Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Mon, 11 Dec 2023 13:34:29 -0500 Subject: [PATCH] Fix color for selections in scrollbar (#3590) This PR fixes an issue where we weren't using the right color for displaying selections within the scrollbar. Release Notes: - N/A --- crates/editor2/src/element.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/editor2/src/element.rs b/crates/editor2/src/element.rs index 3e73d00570..050b2490f0 100644 --- a/crates/editor2/src/element.rs +++ b/crates/editor2/src/element.rs @@ -1302,7 +1302,7 @@ impl EditorElement { cx.paint_quad( bounds, Corners::default(), - cx.theme().colors().scrollbar_thumb_background, + cx.theme().status().info, Edges { top: Pixels::ZERO, right: px(1.),