Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/ReckonPrimer.activity/display.py
diff options
context:
space:
mode:
Diffstat (limited to 'ReckonPrimer.activity/display.py')
-rwxr-xr-xReckonPrimer.activity/display.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/ReckonPrimer.activity/display.py b/ReckonPrimer.activity/display.py
index 092e78b..ac0381e 100755
--- a/ReckonPrimer.activity/display.py
+++ b/ReckonPrimer.activity/display.py
@@ -220,7 +220,7 @@ class Display:
"""
if self.running == False:
self.running = True
- self.start_button.set_label(gtk.STOCK_STOP)
+ self.start_button.set_label(gtk.STOCK_STOP) #stop-button
self.start_alignment = self.start_button.get_children()[0]
self.start_hbox = self.start_alignment.get_children()[0]
self.start_image, self.start_label = self.start_hbox.get_children()
@@ -232,12 +232,12 @@ class Display:
elif self.running == True:
self.protocol('----------------------------------------', 0, 'OK')
self.running = False
- self.start_button.set_label(gtk.STOCK_GO_FORWARD)
+ self.start_button.set_label(gtk.STOCK_GO_FORWARD)# >-button
self.start_alignment = self.start_button.get_children()[0]
self.start_hbox = self.start_alignment.get_children()[0]
self.start_image, self.start_label = self.start_hbox.get_children()
self.start_label.set_label("")
- self.calc_table.destroy() # difference from here
+ self.calc_table.destroy() # difference from here
self.feedback_table_hide()
self.settings_table.show()
self.collection_table.show()
@@ -364,7 +364,7 @@ class Display:
def offer_coll_to_learner(self, collect):
"""TODO: get the users choice from buttons above the settings"""
collect.define_coll_gui()
- collect.set_coll_gui()
+ collect.set_coll_gui() # sets callbacks
def switch_exercise(self):
""" Another exercise has been selected. """