Skip to content

Commit

Permalink
Fix ugly disappearing scrollbars
Browse files Browse the repository at this point in the history
  • Loading branch information
NGgmnBQGwR committed Jan 8, 2024
1 parent 75d9c5a commit 4fb9572
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/manga_ui.rs
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,9 @@ impl MangaUI {
.size = 14.;
cc.egui_ctx.set_style(style);
cc.egui_ctx.set_visuals(egui::Visuals::light());
cc.egui_ctx.style_mut(|style| {
style.spacing.scroll = egui::style::ScrollStyle::solid();
});

let backend_recv_clone = self.messenger.backend_recv.clone();
let ctx_clone = cc.egui_ctx.clone();
Expand Down

0 comments on commit 4fb9572

Please sign in to comment.