From a61f39fbd5763bf4400862c6efccc106f72ba434 Mon Sep 17 00:00:00 2001 From: "Veronica K. B. Olsen" <1619840+vkbo@users.noreply.github.com> Date: Tue, 29 Oct 2019 19:18:26 +0100 Subject: [PATCH] The first column header of the tree view should be 'Label', not 'Name', for consistency. --- nw/gui/doctree.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nw/gui/doctree.py b/nw/gui/doctree.py index 600e8fee..cdef8d3f 100644 --- a/nw/gui/doctree.py +++ b/nw/gui/doctree.py @@ -51,7 +51,7 @@ class GuiDocTree(QTreeWidget): self.setExpandsOnDoubleClick(True) self.setIndentation(13) self.setColumnCount(4) - self.setHeaderLabels(["Name","Words","Flags","Handle"]) + self.setHeaderLabels(["Label","Words","Flags","Handle"]) if not self.debugGUI: self.hideColumn(self.C_HANDLE)