Repaint after view action

This commit is contained in:
Luke Street 2024-12-08 21:42:33 -07:00
parent 303f2938a2
commit 1756b9f6c5
1 changed files with 4 additions and 0 deletions

View File

@ -484,6 +484,10 @@ impl App {
}
fn post_update(&mut self, ctx: &egui::Context, action: Option<DiffViewAction>) {
if action.is_some() {
ctx.request_repaint();
}
self.appearance.post_update(ctx);
let ViewState { jobs, diff_state, config_state, graphics_state, .. } = &mut self.view_state;