From cfa9c8c9c85d93727637925a7241da49434cd781 Mon Sep 17 00:00:00 2001 From: "Veronica K. B. Olsen" Date: Sat, 25 May 2019 23:47:33 +0200 Subject: [PATCH] Try using d format instead in status bar --- nw/gui/statusbar.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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):