Skip to content

Commit

Permalink
Merge pull request #17 from dagit/development
Browse files Browse the repository at this point in the history
Add current comparison label
  • Loading branch information
dagit authored Jun 14, 2023
2 parents e2992b0 + 74ff087 commit 38c5941
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1310,6 +1310,14 @@ void main() {
}
});
ui.separator();
ui.add(
egui::widgets::Label::new(format!(
"Comparison: {}",
self.timer.read().unwrap().current_comparison()
))
.wrap(false),
);
ui.separator();
if ui.button("Quit").clicked() {
frame.close();
}
Expand Down

0 comments on commit 38c5941

Please sign in to comment.