aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2008-04-13 22:37:42 +0000
committerFelix Domke <tmbinc@elitedvb.net>2008-04-13 22:37:42 +0000
commit46b16b46aa3c50fdc848f3c228d06871450653f2 (patch)
treedcb1740d946ae3ceef0441555ae0776067dab325 /lib/python
parent10f042bc5176b25dd067e57006647e769ec171da (diff)
downloadenigma2-46b16b46aa3c50fdc848f3c228d06871450653f2.tar.gz
enigma2-46b16b46aa3c50fdc848f3c228d06871450653f2.zip
use 'Console' font in console window
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Screens/Console.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Screens/Console.py b/lib/python/Screens/Console.py
index d71a7a82..0ceba3ec 100644
--- a/lib/python/Screens/Console.py
+++ b/lib/python/Screens/Console.py
@@ -7,7 +7,7 @@ class Console(Screen):
#TODO move this to skin.xml
skin = """
<screen position="100,100" size="550,400" title="Command execution..." >
- <widget name="text" position="0,0" size="550,400" font="Regular;15" />
+ <widget name="text" position="0,0" size="550,400" font="Console;14" />
</screen>"""
def __init__(self, session, title = "Console", cmdlist = None, finishedCallback = None, closeOnSuccess = False):