Skip to content

Commit

Permalink
increase others
Browse files Browse the repository at this point in the history
  • Loading branch information
ClementTsang committed Jan 15, 2023
1 parent 6ed380d commit eeda457
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/canvas/widgets/battery_display.rs
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ impl Painter {
battery_rows.push(Row::new(vec!["Time to empty", &s]).style(style));
} else {
s = short_time(*secs);
battery_rows.push(Row::new(vec!["Empty", &s]).style(style));
battery_rows.push(Row::new(vec!["To empty", &s]).style(style));
}
}
BatteryDuration::ToFull(secs) => {
Expand All @@ -177,7 +177,7 @@ impl Painter {
battery_rows.push(Row::new(vec!["Time to full", &s]).style(style));
} else {
s = short_time(*secs);
battery_rows.push(Row::new(vec!["Full", &s]).style(style));
battery_rows.push(Row::new(vec!["To full", &s]).style(style));
}
}
BatteryDuration::Unknown => {}
Expand Down

0 comments on commit eeda457

Please sign in to comment.