Skip to content

Commit

Permalink
make numbers more readable
Browse files Browse the repository at this point in the history
  • Loading branch information
ryqdev committed May 25, 2024
1 parent 16a0afc commit 88a66b7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/green/green.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ impl Green {
"candlestic chart",
native_options,
Box::new(|cc| Box::new(visualization::candle::App{
value: 0.0,
value: 1_000.0,
lock_x: false,
lock_y: false,
ctrl_to_zoom: false,
Expand Down
2 changes: 1 addition & 1 deletion src/green/visualization/candle.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ impl eframe::App for App {
});

egui::SidePanel::right("portfolio").show(ctx, |ui| {
ui.label("Portfolio: 100000");
ui.label("Portfolio: 100_000");
ui.label("Orders:");
});

Expand Down

0 comments on commit 88a66b7

Please sign in to comment.