diff options
-rw-r--r-- | src/datasource/networkspeed.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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<qint64>& NetworkSpeed::getBars() const { - static QList<qint64> list = QList<qint64>() << ((qint64)1024 * 1024 * 10); + static QList<qint64> list = QList<qint64>() << ((qint64)1024 * 1024 * 12); return list; } qint64 NetworkSpeed::getMaximum() { - return ((qint64)1024 * 1024 * 100); + return ((qint64)1024 * 1024 * 120); } |