From 85e53f35a5a391c0d9d1bb82f9f9d2b51f7bfcbe Mon Sep 17 00:00:00 2001 From: Walther Neuper Date: Mon, 14 Dec 2009 16:13:32 +0000 Subject: collection_+feedback_table both visible, intermed 2:renamings --- 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() -- cgit v0.9.1