2009-01-23, 02:09
email with log is sent ... again thanks for ur support here
megacrypto Wrote:email with log is sent ... again thanks for ur support here
BigBellyBilly Wrote:yes, it was a bad installation.
Clean off your installation and empty the cache.
Download v1.18.1 and install.
if problem persists, pm me your xbmc.log, detailing which datasource you use.
BigBellyBilly Wrote:yes, it was a bad installation.
Clean off your installation and empty the cache.
Download v1.18.1 and install.
if problem persists, pm me your xbmc.log, detailing which datasource you use.
--- myTV-1.19beta/default.py 2009-04-06 14:22:32.000000000 +1000
+++ myTV-1.19beta-jez/default.py 2009-04-06 14:25:42.000000000 +1000
@@ -574,7 +574,7 @@
buttonID = action.getButtonCode()
except: return
- if actionID in CANCEL_DIALOG + EXIT_SCRIPT or buttonID in CANCEL_DIALOG + EXIT_SCRIPT:
+ if actionID in CANCEL_DIALOG or buttonID in EXIT_SCRIPT:
debug("EXIT_SCRIPT")
self.ready = False
self.cleanup()
@@ -677,6 +677,10 @@
debug("< ON NAVLISTS CONTROL")
self.setFocus(self.getControl(controlID))
else:
+ # clicked or <enter> on programme, update the focus
+ #messageOK("onClick(), updating EPG, controlID is %i" % controlID)
+ self.setFocus(self.getControl(controlID))
+ #self.updateEPG(redrawBtns=True, updateLogo=True, updateChNames=True, forceLoadChannels=True)
self.showDescription()
self.ready = True
@@ -1711,10 +1715,10 @@
buttonID = action.getButtonCode()
except: return
- if actionID in CANCEL_DIALOG + EXIT_SCRIPT or buttonID in CANCEL_DIALOG + EXIT_SCRIPT:
+ if actionID in CANCEL_DIALOG + EXIT_SCRIPT or buttonID in EXIT_SCRIPT:
debug("ProgDescDialog() EXIT_SCRIPT")
self._close_dialog()
- elif actionID in CLICK_B or actionID == ACTION_REMOTE_RECORD: # RECORD / cancel record
+ elif actionID in CLICK_B or actionID == ACTION_REMOTE_RECORD or buttonID in CLICK_B: # RECORD / cancel record
debug("ProgDescDialog() CLICK_B")
self.actionB()
elif actionID in CLICK_X: