Skip to content

Commit

Permalink
Reduce font size to fit a larger message.
Browse files Browse the repository at this point in the history
  • Loading branch information
elliottslaughter committed Mar 19, 2024
1 parent c7a49a0 commit f904ed8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1502,7 +1502,7 @@ impl Window {
ui.heading(format!("Profile {}", self.index));
ui.label(cx.view_interval.to_string());
if let Some(message) = &self.config.warning_message {
ui.label(RichText::new(message).color(Color32::RED).heading());
ui.label(RichText::new(message).color(Color32::RED));
}
});

Expand Down

0 comments on commit f904ed8

Please sign in to comment.