Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/Indicator/Widgets/IndicatorWidgetBandwidth.vala
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ public class Monitor.IndicatorWidgetBandwidth : Monitor.IndicatorWidget {
base (icon_name);
}

construct {
label.width_chars = 8;
}

public override void update_label (Value value) {
uint64 bandwidth = value.get_uint64 ();

Expand Down
4 changes: 4 additions & 0 deletions src/Indicator/Widgets/IndicatorWidgetFrequency.vala
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ public class Monitor.IndicatorWidgetFrequency : Monitor.IndicatorWidget {
base (icon_name);
}

construct {
label.width_chars = 8;
}

public override void update_label (Value value) {
double frequency = value.get_double ();

Expand Down
Loading