aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens/ChannelSelection.py
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2007-11-28 13:07:43 +0000
committerFelix Domke <tmbinc@elitedvb.net>2007-11-28 13:07:43 +0000
commit76ab06c06bdf77f0b0cecd225367862ef0de0d2f (patch)
tree5a0c44fbda7cd123261afb39549ef89740a317a5 /lib/python/Screens/ChannelSelection.py
parent5de16a03d348df3a90dd0c768e0d7fa3d7a82fc1 (diff)
downloadenigma2-76ab06c06bdf77f0b0cecd225367862ef0de0d2f.tar.gz
enigma2-76ab06c06bdf77f0b0cecd225367862ef0de0d2f.zip
improve text editing. Patch by Anders Holst
Diffstat (limited to 'lib/python/Screens/ChannelSelection.py')
-rw-r--r--lib/python/Screens/ChannelSelection.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Screens/ChannelSelection.py b/lib/python/Screens/ChannelSelection.py
index 25765164..5047d6df 100644
--- a/lib/python/Screens/ChannelSelection.py
+++ b/lib/python/Screens/ChannelSelection.py
@@ -159,7 +159,7 @@ class ChannelContextMenu(Screen):
self.session.open( ServiceInfo, self.csel.getCurrentSelection() )
def showBouquetInputBox(self):
- self.session.openWithCallback(self.bouquetInputCallback, InputBox, title=_("Please enter a name for the new bouquet"), text="bouquetname", maxSize=False, type=Input.TEXT)
+ self.session.openWithCallback(self.bouquetInputCallback, InputBox, title=_("Please enter a name for the new bouquet"), text="bouquetname", maxSize=False, visible_width = 56, type=Input.TEXT)
def bouquetInputCallback(self, bouquet):
if bouquet is not None:
@@ -205,7 +205,7 @@ class ChannelContextMenu(Screen):
self.close()
def showMarkerInputBox(self):
- self.session.openWithCallback(self.markerInputCallback, InputBox, title=_("Please enter a name for the new marker"), text="markername", maxSize=False, type=Input.TEXT)
+ self.session.openWithCallback(self.markerInputCallback, InputBox, title=_("Please enter a name for the new marker"), text="markername", maxSize=False, visible_width = 56, type=Input.TEXT)
def markerInputCallback(self, marker):
if marker is not None: