From: Jakob Cornell Date: Wed, 25 Dec 2019 18:16:11 +0000 (-0600) Subject: Fix data entry labels X-Git-Url: https://jcornell.net/gitweb/gitweb.cgi?a=commitdiff_plain;h=98791cb71c479a7ba8cbb58acbb0edb855166d33;p=tutoring-tool.git Fix data entry labels --- diff --git a/main.py b/main.py index 2f007b7..c2f9e77 100644 --- a/main.py +++ b/main.py @@ -375,8 +375,8 @@ class DataEditView(View): col_names = [ "Comment", - "Score (R)", "Score (W)", "Score (M)", "Score (S)", - "Time (R)", "Time (W)", "Time (M)", "Time (S)", + "Score (E)", "Score (M)", "Score (R)", "Score (S)", + "Time (E)", "Time (M)", "Time (R)", "Time (S)", ] labels = [tk.Label(self.grid, text = name, width = 10) for name in col_names] for (col, label) in enumerate(labels):