Use solid scrollbar in egui

Resolves #69
This commit is contained in:
Luke Street 2024-06-03 19:03:33 -06:00
parent 6037c12ad0
commit 9e04357d9f
1 changed files with 2 additions and 0 deletions

View File

@ -119,6 +119,8 @@ impl Appearance {
self.delete_color = Color32::from_rgb(200, 40, 41);
}
}
style.spacing.scroll = egui::style::ScrollStyle::solid();
style.spacing.scroll.bar_width = 10.0;
ctx.set_style(style);
}