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 3e73d005700c44f37de72b7e2f298623306b228f..050b2490f0326a2535d34d9d7a101a6ffc61f0a2 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.),