summaryrefslogtreecommitdiff
path: root/grc/gui
diff options
context:
space:
mode:
authorHåkon Vågsether <hauk142@gmail.com>2021-10-08 23:35:05 +0200
committermormj <34754695+mormj@users.noreply.github.com>2021-10-11 06:57:22 -0400
commit58d3849bce9b59cb5306757ab1d56a0dad536b49 (patch)
tree8f750b3eec8d9b2b1e4908e481e84fa9c191bd4f /grc/gui
parentfa01c8759dbfbff208690dbf39ef0ccc06a05a0f (diff)
grc: Write "ID", not "Id"
Signed-off-by: Håkon Vågsether <hauk142@gmail.com>
Diffstat (limited to 'grc/gui')
-rw-r--r--grc/gui/VariableEditor.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/grc/gui/VariableEditor.py b/grc/gui/VariableEditor.py
index afffc22008..c5090ba899 100644
--- a/grc/gui/VariableEditor.py
+++ b/grc/gui/VariableEditor.py
@@ -99,7 +99,7 @@ class VariableEditor(Gtk.VBox):
# Block Name or Category
self.id_cell = Gtk.CellRendererText()
self.id_cell.connect('edited', self._handle_name_edited_cb)
- id_column = Gtk.TreeViewColumn("Id", self.id_cell, text=ID_INDEX)
+ id_column = Gtk.TreeViewColumn("ID", self.id_cell, text=ID_INDEX)
id_column.set_name("id")
id_column.set_resizable(True)
id_column.set_max_width(Utils.scale_scalar(300))