disable fast winding for non TS mediafiles until we have a usable solution for this..
[vuplus_dvbapp] / lib / python / Screens / VirtualKeyBoard.py
index bde6f75..19500ed 100755 (executable)
@@ -195,13 +195,19 @@ class VirtualKeyBoard(Screen):
                
                selectedKey = self.selectedKey
 
+               text = None
+
                for x in list:
                        if selectedKey < 12:
-                               text = x[selectedKey]
+                               if selectedKey < len(x):
+                                       text = x[selectedKey]
                                break
                        else:
                                selectedKey -= 12
 
+               if text is None:
+                       return
+
                text = text.encode("utf-8")
 
                if text == "EXIT":