From be1769b495e4c1c3ff187d6c05a7fe2a325ec285 Mon Sep 17 00:00:00 2001 From: Simon Rettberg Date: Wed, 22 Jun 2022 14:51:54 +0200 Subject: Set maximum to ~120MB/s, about matches theoretical maximum of GBit NIC --- src/datasource/networkspeed.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/datasource/networkspeed.cpp b/src/datasource/networkspeed.cpp index 2a67598..60d397d 100644 --- a/src/datasource/networkspeed.cpp +++ b/src/datasource/networkspeed.cpp @@ -53,11 +53,11 @@ qint64 NetworkSpeed::read() const QList& NetworkSpeed::getBars() const { - static QList list = QList() << ((qint64)1024 * 1024 * 10); + static QList list = QList() << ((qint64)1024 * 1024 * 12); return list; } qint64 NetworkSpeed::getMaximum() { - return ((qint64)1024 * 1024 * 100); + return ((qint64)1024 * 1024 * 120); } -- cgit v1.2.3-55-g7522