Skip to content

Commit

Permalink
Improve charging lightning icon
Browse files Browse the repository at this point in the history
  • Loading branch information
bugadani committed Oct 15, 2023
1 parent 73ecb42 commit 5194ebb
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions gui/src/widgets/battery_small.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,16 +59,16 @@ impl Drawable for ChargingIndicator {
#[allow(clippy::unusual_byte_groupings)]
const CHARGING_IMAGE: ImageRaw<'_, BinaryColor> = ImageRaw::new(
&[
0b000000_00,
0b000100_00,
0b001000_00,
0b011000_00,
0b001100_00,
0b001000_00,
0b010000_00,
0b000000_00,
0b00000_000,
0b00010_000,
0b00100_000,
0b01100_000,
0b00110_000,
0b00011_000,
0b00010_000,
0b00100_000,
],
6,
5,
);

let raw_image = match self.state {
Expand Down

0 comments on commit 5194ebb

Please sign in to comment.