Skip to content

Commit

Permalink
renamed buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
bertiqwerty committed Aug 28, 2023
1 parent b76a210 commit 6d2f714
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -658,7 +658,7 @@ impl<'a> eframe::App for BalanceApp<'a> {
egui::ScrollArea::new([true, true]).show(ui, |ui| {
heading(ui, "Balance");
heading2(ui, "1. Add Price Development(s)");
egui::CollapsingHeader::new("Simulate").show(ui, |ui| {
egui::CollapsingHeader::new("Simulate price development").show(ui, |ui| {
egui::Grid::new("simulate-inputs")
.num_columns(2)
.show(ui, |ui| {
Expand Down Expand Up @@ -769,7 +769,7 @@ impl<'a> eframe::App for BalanceApp<'a> {
}
});
});
egui::CollapsingHeader::new("Historical Index Data").show(ui, |ui| {
egui::CollapsingHeader::new("Use historical data as price development").show(ui, |ui| {
ui.horizontal(|ui| {
let mut dl_button = |name, filename| {
if ui.button(name).clicked() {
Expand Down

0 comments on commit 6d2f714

Please sign in to comment.