From 9fac5ff7371972cef663d456b96c68f51b5c2c01 Mon Sep 17 00:00:00 2001 From: Stefan Pluecken Date: Wed, 4 Jan 2006 22:55:19 +0000 Subject: [PATCH] leave update plugin with ok button after the update process (we entered it with ok, so we leave it with ok) --- lib/python/Plugins/update.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/lib/python/Plugins/update.py b/lib/python/Plugins/update.py index e919f383..d05d317e 100644 --- a/lib/python/Plugins/update.py +++ b/lib/python/Plugins/update.py @@ -24,11 +24,15 @@ class Example(Screen): "back": self.close }, -1) + self.update = True self.delayTimer = eTimer() self.delayTimer.timeout.get().append(self.doUpdateDelay) def go(self): - self.session.openWithCallback(self.doUpdate, MessageBox, _("Do you want to update your Dreambox?\nAfter pressing OK, please wait!")) + if self.update: + self.session.openWithCallback(self.doUpdate, MessageBox, _("Do you want to update your Dreambox?\nAfter pressing OK, please wait!")) + else: + self.close() def doUpdateDelay(self): lines = os.popen("ipkg update && ipkg upgrade", "r").readlines() @@ -36,6 +40,7 @@ class Example(Screen): for x in lines: string += x self["text"].setText(_("Updating finished. Here is the result:") + "\n\n" + string) + self.update = False def doUpdate(self, val = False): -- 2.30.2