Fixed: Net sync scale bug

This commit is contained in:
aristocratos 2022-05-28 20:48:02 +02:00
parent c257938d46
commit 7291c7dfdc
2 changed files with 2 additions and 1 deletions

View File

@ -243,7 +243,7 @@ namespace Config {
{"base_10_sizes", false},
{"io_graph_combined", false},
{"net_auto", true},
{"net_sync", false},
{"net_sync", true},
{"show_battery", true},
{"vim_keys", false},
{"tty_mode", false},

View File

@ -1153,6 +1153,7 @@ namespace Net {
//? Set counters for auto scaling
if (net_auto and selected_iface == iface) {
if (net_sync and saved_stat.speed < net.at(iface).stat.at(dir == "download" ? "upload" : "download").speed) continue;
if (saved_stat.speed > graph_max[dir]) {
++max_count[dir][0];
if (max_count[dir][1] > 0) --max_count[dir][1];