From d9b092b5933430b44bd7da43a01e99a074cca7ea Mon Sep 17 00:00:00 2001 From: "Veronica K. B. Olsen" <1619840+vkbo@users.noreply.github.com> Date: Wed, 19 Aug 2020 22:50:37 +0200 Subject: [PATCH] Fixed bug where word and paragraph count was swapped in outline details panel --- nw/gui/outlinedetails.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nw/gui/outlinedetails.py b/nw/gui/outlinedetails.py index 9e53653f..6360a321 100644 --- a/nw/gui/outlinedetails.py +++ b/nw/gui/outlinedetails.py @@ -249,8 +249,8 @@ class GuiOutlineDetails(QScrollArea): self.itemValue.setText(nwItem.itemStatus) self.cCValue.setText("{:n}".format(checkInt(novIdx["cCount"], 0))) - self.wCValue.setText("{:n}".format(checkInt(novIdx["pCount"], 0))) - self.pCValue.setText("{:n}".format(checkInt(novIdx["wCount"], 0))) + self.wCValue.setText("{:n}".format(checkInt(novIdx["wCount"], 0))) + self.pCValue.setText("{:n}".format(checkInt(novIdx["pCount"], 0))) self.synopValue.setText(novIdx["synopsis"])