Try using d format instead in status bar

This commit is contained in:
Veronica K. B. Olsen
2019-05-25 23:47:33 +02:00
parent 1ded8425d0
commit cfa9c8c9c8
+2 -2
View File
@@ -106,11 +106,11 @@ class GuiMainStatus(QStatusBar):
return
def setStats(self, pWC, sWC):
self.boxStats.setText("<b>Project:</b> {:n} : {:n}".format(pWC,sWC))
self.boxStats.setText("<b>Project:</b> {:d} : {:d}".format(pWC,sWC))
return
def setCounts(self, cC, wC, pC):
self.boxCounts.setText("<b>Document:</b> {:n} : {:n} : {:n}".format(cC,wC,pC))
self.boxCounts.setText("<b>Document:</b> {:d} : {:d} : {:d}".format(cC,wC,pC))
return
def setDocHandleCount(self, theHandle):