Skip to content

Commit

Permalink
Merge pull request #1275 from hannobraun/status
Browse files Browse the repository at this point in the history
Fix text of status messages looking jagged
  • Loading branch information
hannobraun authored Oct 26, 2022
2 parents 0494fe7 + 4e86125 commit f0c58ef
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion crates/fj-viewer/src/gui.rs
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,8 @@ impl Gui {
ui.group(|ui| {
ui.add(egui::Label::new(
egui::RichText::new(format!("Status:{}", status.status()))
.color(egui::Color32::BLACK),
.color(egui::Color32::BLACK)
.background_color(egui::Color32::WHITE),
))
})
});
Expand Down

0 comments on commit f0c58ef

Please sign in to comment.