From 98791cb71c479a7ba8cbb58acbb0edb855166d33 Mon Sep 17 00:00:00 2001 From: Jakob Cornell Date: Wed, 25 Dec 2019 12:16:11 -0600 Subject: [PATCH] Fix data entry labels --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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): -- 2.30.2