diff --git a/nw/gui/statusbar.py b/nw/gui/statusbar.py index 66a027d3..d9feb745 100644 --- a/nw/gui/statusbar.py +++ b/nw/gui/statusbar.py @@ -106,11 +106,11 @@ class GuiMainStatus(QStatusBar): return def setStats(self, pWC, sWC): - self.boxStats.setText("Project: {:n} : {:n}".format(pWC,sWC)) + self.boxStats.setText("Project: {:d} : {:d}".format(pWC,sWC)) return def setCounts(self, cC, wC, pC): - self.boxCounts.setText("Document: {:n} : {:n} : {:n}".format(cC,wC,pC)) + self.boxCounts.setText("Document: {:d} : {:d} : {:d}".format(cC,wC,pC)) return def setDocHandleCount(self, theHandle):