Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWalther Neuper <neuper@neuper.(none)>2009-12-14 16:13:32 (GMT)
committer Walther Neuper <neuper@neuper.(none)>2009-12-14 16:13:32 (GMT)
commit85e53f35a5a391c0d9d1bb82f9f9d2b51f7bfcbe (patch)
tree7865a29700829b0c1b64018d8adaec879aa561d7
parent053acc3280acd02671785da76bf0c2ba4ec27a99 (diff)
collection_+feedback_table both visible, intermed 2:renamings
-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 fccec11..c256fd3 100755
--- a/ReckonPrimer.activity/display.py
+++ b/ReckonPrimer.activity/display.py
@@ -114,7 +114,7 @@ class Display:
self.stopwatch_label.queue_draw()
return True
- def draw_feedback_table(self):
+ def feedback_table_draw(self):
"""RENAME to draw_feedback_screen"""
# Section for stopwatch
self.stopwatch = Timer()
@@ -182,7 +182,7 @@ class Display:
self.feedback_table.attach(self.progress_total, 5, 6, 9, 10 )
self.progress_total.show()
- def hide_result_screen(self):
+ def feedback_table_hide(self):
self.progressbar.set_fraction(0)
self.stopwatch_label.hide()
self.name_label.hide()
@@ -228,7 +228,7 @@ class Display:
self._co.notify(('setting-done', self._sett))# difference from here
self.settings_table.hide()
self.collection_table.hide()
- self.draw_feedback_table()
+ self.feedback_table_draw()
elif self.running == True:
self.protocol('----------------------------------------', 0, 'OK')
self.running = False
@@ -238,7 +238,7 @@ class Display:
self.start_image, self.start_label = self.start_hbox.get_children()
self.start_label.set_label("")
self.display_table.destroy() # difference from here
- self.hide_result_screen()
+ self.feedback_table_hide()
self.settings_table.show()
self.collection_table.show()