fix(examples): Correct progress label in gague example (#263)

This commit is contained in:
Chris Morris 2023-06-16 05:17:04 -04:00 committed by GitHub
parent 0bf6af17e7
commit 43bac80e4d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -153,7 +153,7 @@ fn ui<B: Backend>(f: &mut Frame<B>, app: &App) {
.use_unicode(true);
f.render_widget(gauge, chunks[2]);
let label = format!("{}/100", app.progress2);
let label = format!("{}/100", app.progress4);
let gauge = Gauge::default()
.block(Block::default().title("Gauge4"))
.gauge_style(