Fix byte formatting
This commit is contained in:
parent
24ae23946b
commit
337cf93b4b
|
@ -1701,17 +1701,6 @@ class MyForm(settingsmixin.SMainWindow):
|
||||||
self.actionShow.setChecked(not self.actionShow.isChecked())
|
self.actionShow.setChecked(not self.actionShow.isChecked())
|
||||||
self.appIndicatorShowOrHideWindow()
|
self.appIndicatorShowOrHideWindow()
|
||||||
|
|
||||||
def formatBytes(self, num):
|
|
||||||
for x in ['bytes','KB','MB','GB']:
|
|
||||||
if num < 1000.0:
|
|
||||||
return "%3.0f %s" % (num, x)
|
|
||||||
num /= 1000.0
|
|
||||||
return "%3.0f %s" % (num, 'TB')
|
|
||||||
|
|
||||||
def formatByteRate(self, num):
|
|
||||||
num /= 1000
|
|
||||||
return "%4.0f KB" % num
|
|
||||||
|
|
||||||
# Indicates whether or not there is a connection to the Bitmessage network
|
# Indicates whether or not there is a connection to the Bitmessage network
|
||||||
connected = False
|
connected = False
|
||||||
|
|
||||||
|
|
|
@ -31,6 +31,17 @@ class NetworkStatus(QtGui.QWidget):
|
||||||
self.timer.start(2000) # milliseconds
|
self.timer.start(2000) # milliseconds
|
||||||
QtCore.QObject.connect(self.timer, QtCore.SIGNAL("timeout()"), self.runEveryTwoSeconds)
|
QtCore.QObject.connect(self.timer, QtCore.SIGNAL("timeout()"), self.runEveryTwoSeconds)
|
||||||
|
|
||||||
|
def formatBytes(self, num):
|
||||||
|
for x in ['bytes','KB','MB','GB']:
|
||||||
|
if num < 1000.0:
|
||||||
|
return "%3.0f %s" % (num, x)
|
||||||
|
num /= 1000.0
|
||||||
|
return "%3.0f %s" % (num, 'TB')
|
||||||
|
|
||||||
|
def formatByteRate(self, num):
|
||||||
|
num /= 1000
|
||||||
|
return "%4.0f KB" % num
|
||||||
|
|
||||||
def updateNumberOfMessagesProcessed(self):
|
def updateNumberOfMessagesProcessed(self):
|
||||||
self.labelSyncStatus.setText(_translate("MainWindow", "Objects to be synced: %1").arg(str(sum(shared.numberOfObjectsThatWeHaveYetToGetPerPeer.itervalues()))))
|
self.labelSyncStatus.setText(_translate("MainWindow", "Objects to be synced: %1").arg(str(sum(shared.numberOfObjectsThatWeHaveYetToGetPerPeer.itervalues()))))
|
||||||
self.labelMessageCount.setText(_translate(
|
self.labelMessageCount.setText(_translate(
|
||||||
|
|
Loading…
Reference in New Issue
Block a user