diff options
author | Jonathan Marshall <jmarshall@never.you.mind> | 2011-08-03 08:32:41 +1200 |
---|---|---|
committer | Jonathan Marshall <jmarshall@never.you.mind> | 2011-08-03 08:54:51 +1200 |
commit | d2b4c308b635eafebfb0589b5eacad3a3c1bbade (patch) | |
tree | c62a4d88c943d7be2ee09434b637095fd4cfe388 | |
parent | 745ca15acf8fc275d13256ff3ad13727e18b590b (diff) |
make sure we specifically set allowhiddenfocus to false in the python implementation of setVisibleCondition
-rw-r--r-- | xbmc/interfaces/python/xbmcmodule/control.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/interfaces/python/xbmcmodule/control.cpp b/xbmc/interfaces/python/xbmcmodule/control.cpp index d4d6a3c003..581b9b8d79 100644 --- a/xbmc/interfaces/python/xbmcmodule/control.cpp +++ b/xbmc/interfaces/python/xbmcmodule/control.cpp @@ -186,7 +186,7 @@ namespace PYXBMC PyXBMCGUILock(); if (self->pGUIControl) - self->pGUIControl->SetVisibleCondition(cVisible, bHidden ? "true" : ""); + self->pGUIControl->SetVisibleCondition(cVisible, bHidden ? "true" : "false"); PyXBMCGUIUnlock(); Py_INCREF(Py_None); |