Skip to content

Commit

Permalink
fix: padding on battery percentage label
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshStrobl committed Aug 11, 2023
1 parent 00a9102 commit 746f54a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/panel/applets/status/PowerIndicator.vala
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public class BatteryIcon : Gtk.Box {
pack_start(this.image, false, false, 0);

this.percent_label.valign = Gtk.Align.CENTER;
this.percent_label.margin_end = 4;
this.percent_label.margin_start = 4;
pack_start(this.percent_label, false, false, 0);
this.percent_label.no_show_all = true;

Expand Down

0 comments on commit 746f54a

Please sign in to comment.