aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens
diff options
context:
space:
mode:
authorFraxinas <andreas.frisch@multimedia-labs.de>2008-11-18 13:14:46 +0100
committerFraxinas <andreas.frisch@multimedia-labs.de>2008-11-18 13:14:46 +0100
commit623abfc754b4a95f79f90cf0498300d16b52f894 (patch)
tree7770f5aeb736dad7987e012939a87d29f94faba1 /lib/python/Screens
parent93105cf34883745d8d886de926631d25c587a1f2 (diff)
downloadenigma2-623abfc754b4a95f79f90cf0498300d16b52f894.tar.gz
enigma2-623abfc754b4a95f79f90cf0498300d16b52f894.zip
scroll to bottom of output after execution
Diffstat (limited to 'lib/python/Screens')
-rw-r--r--lib/python/Screens/Console.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/python/Screens/Console.py b/lib/python/Screens/Console.py
index b57f2400..c6b156cf 100644
--- a/lib/python/Screens/Console.py
+++ b/lib/python/Screens/Console.py
@@ -55,6 +55,7 @@ class Console(Screen):
str = self["text"].getText()
str += _("Execution finished!!");
self["text"].setText(str)
+ self["text"].lastPage()
if self.finishedCallback is not None:
self.finishedCallback()
if not retval and self.closeOnSuccess:
@@ -67,4 +68,4 @@ class Console(Screen):
self.container.dataAvail.remove(self.dataAvail)
def dataAvail(self, str):
- self["text"].setText(self["text"].getText() + str)
+ self["text"].setText(self["text"].getText() + str) \ No newline at end of file