mirror of
https://github.com/polybar/polybar.git
synced 2024-11-03 04:33:30 -05:00
fix(network): Change default value of udspeed_minwidth
This commit is contained in:
parent
6e35bcd183
commit
5028779528
1 changed files with 6 additions and 6 deletions
|
@ -44,14 +44,14 @@ namespace modules {
|
||||||
stateflag m_connected{false};
|
stateflag m_connected{false};
|
||||||
stateflag m_packetloss{false};
|
stateflag m_packetloss{false};
|
||||||
|
|
||||||
int m_signal = 0;
|
int m_signal{0};
|
||||||
int m_quality = 0;
|
int m_quality{0};
|
||||||
int m_counter = -1; // -1 to ignore the first run
|
int m_counter{-1}; // -1 to ignore the first run
|
||||||
|
|
||||||
string m_interface;
|
string m_interface;
|
||||||
int m_ping_nth_update = 0;
|
int m_ping_nth_update{0};
|
||||||
int m_udspeed_minwidth = 3;
|
int m_udspeed_minwidth{0};
|
||||||
bool m_accumulate = false;
|
bool m_accumulate{false};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue