Changeset 1904

Show
Ignore:
Timestamp:
21/11/08 19:11:29 (7 weeks ago)
Author:
duncan
svm:headrev:

cc3e1ea1-1e01-0410-8d68-8b121e83a9d5:11186
Message:

Updates to Adams livepause package
Patch from Adam Charrett applied

Location:
freevo
Files:
2 added
3 modified

Legend:

Unmodified
Added
Removed
  • freevo/share/skins/osd/base.fxd

    r1900 r1904  
    118118            <button x="30" y="160" width="140" height="45" name="button1" style="button" /> 
    119119            <button x="180" y="160" width="140" height="45" name="button2" style="button" /> 
    120             <button x="330" y="160" width="140" height="45" name="button2" style="button" /> 
     120            <button x="330" y="160" width="140" height="45" name="button3" style="button" /> 
    121121 
    122122            <navigationmap> 
  • freevo/src/tv/plugins/livepause/__init__.py

    r1901 r1904  
    276276            } 
    277277 
    278         self.event_maps[State.PLAYING] = { 
     278        self.event_maps[State.NUMBER] = { 
    279279            'STOP'                : self.__handle_stop, 
    280280            'INPUT_1'             : self.__playing_handle_number, 
     
    458458        else: 
    459459            self.player.pause() 
     460        self.osd.display_info(self.__get_display_info)         
    460461        return True 
    461462 
  • freevo/src/tv/plugins/livepause/display/graphics.py

    r1900 r1904  
    3636 
    3737import kaa 
    38  
     38import time 
     39import tv.epg_xmltv 
    3940from tv.plugins.livepause.display.base import OSD 
    4041import dialog 
     
    5051 
    5152    def display_info(self, info_function): 
    52         dialog = dialogs.InfoDialog(info_function) 
     53        dialog = InfoDialog(info_function) 
    5354        dialog.show() 
    5455