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.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/ReckonPrimer.activity/display.py b/ReckonPrimer.activity/display.py
index fca2c58..1fbdee3 100755
--- a/ReckonPrimer.activity/display.py
+++ b/ReckonPrimer.activity/display.py
@@ -365,7 +365,8 @@ 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() # sets callbacks
+ collect.set_coll_gui(collect) # sets callbacks
+ self.finish_learner_collect() # set finish_learner_collect_butt + callb
def switch_exercise(self):
""" Another exercise has been selected. """
@@ -382,3 +383,6 @@ class Display:
def set_select_exerc_semaphore(self, coll_key):
""" Sets a semaphore for finish_collect_callback. """
self._coll_key = coll_key
+
+ def finish_learner_collect(self):
+ pass