From 6bd025b8ef19a2bef46b1056c43e5ecbd287a465 Mon Sep 17 00:00:00 2001 From: Christian Jacobs Date: Sun, 24 Mar 2013 00:25:39 +0000 Subject: [PATCH] Small comment update. --- src/data_entry_panel.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/data_entry_panel.py b/src/data_entry_panel.py index 5f0d35b..f543f53 100644 --- a/src/data_entry_panel.py +++ b/src/data_entry_panel.py @@ -59,7 +59,7 @@ class DataEntryPanel(Gtk.VBox): return def enable(self): - # Activates all text boxes and the update button + # Activates all Entry widgets and the update button keys = self.sources.keys() for i in range(0, len(keys)): self.sources[keys[i]].set_property("editable", True) @@ -67,7 +67,7 @@ class DataEntryPanel(Gtk.VBox): self.update.set_sensitive(True) def disable(self): - # Deactivates all text boxes and the update button + # Deactivates all Entry widgets and the update button keys = self.sources.keys() for i in range(0, len(keys)): self.sources[keys[i]].set_property("editable", False)