From f3ae25541276a2f758b2685dbfe109687a74317f Mon Sep 17 00:00:00 2001 From: Johann Woelper Date: Mon, 23 Sep 2024 20:26:01 +0200 Subject: [PATCH] expand scrollbar further --- src/ui.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui.rs b/src/ui.rs index 07356ad..1972513 100644 --- a/src/ui.rs +++ b/src/ui.rs @@ -2665,7 +2665,7 @@ pub fn apply_theme(state: &OculanteState, ctx: &Context) { } // Switching theme resets accent color, set it again let mut style: egui::Style = (*ctx.style()).clone(); - style.spacing.scroll = egui::style::ScrollStyle::thin(); + style.spacing.scroll = egui::style::ScrollStyle::solid(); style.interaction.tooltip_delay = 0.0; style.spacing.icon_width = 20.; style.spacing.window_margin = 5.0.into();