Skip to content

Commit

Permalink
a little more guidance
Browse files Browse the repository at this point in the history
  • Loading branch information
bertiqwerty committed Aug 8, 2023
1 parent 6c1fde9 commit 0cb081e
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,8 @@ impl<'a> eframe::App for BalanceApp<'a> {

egui::CentralPanel::default().show(ctx, |ui| {
egui::ScrollArea::new([true, true]).show(ui, |ui| {
ui.heading("Charts");
ui.heading("1. Add Charts");
ui.label(" ");
egui::CollapsingHeader::new("Simulate").show(ui, |ui| {
egui::Grid::new("simulate-inputs")
.num_columns(2)
Expand Down Expand Up @@ -356,7 +357,8 @@ impl<'a> eframe::App for BalanceApp<'a> {
self.recompute_balance();
}
ui.separator();
ui.heading("Balance");
ui.heading("2. Set (Re-)Balance");
ui.label(" ");
egui::Grid::new("inputs-balance-payments-interval")
.num_columns(2)
.show(ui, |ui| {
Expand Down Expand Up @@ -475,6 +477,8 @@ impl<'a> eframe::App for BalanceApp<'a> {
ui.label("ready");
}
ui.separator();
ui.heading("3. Investigate Results");
ui.label(" ");

ui.horizontal(|ui| {
if ui
Expand Down

0 comments on commit 0cb081e

Please sign in to comment.