1
0
Fork 0
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:
Michael Carlberg 2016-11-22 20:53:14 +01:00
parent 6e35bcd183
commit 5028779528

View file

@ -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};
}; };
} }