diff options
author | jmarshallnz <jmarshallnz@svn> | 2010-06-08 00:33:15 +0000 |
---|---|---|
committer | jmarshallnz <jmarshallnz@svn> | 2010-06-08 00:33:15 +0000 |
commit | 2c4f5719cf00eaebeeeb66e5787418e8294f7678 (patch) | |
tree | 906188eff73ba9c5c0b95e93dded8216c39f9b31 /guilib/GUIListGroup.cpp | |
parent | ad52f69627841b5dbed4e3a732532d537f1b643a (diff) |
added: Allow multiimage controls inside lists.
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@30930 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
Diffstat (limited to 'guilib/GUIListGroup.cpp')
-rw-r--r-- | guilib/GUIListGroup.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/guilib/GUIListGroup.cpp b/guilib/GUIListGroup.cpp index db14acedbe..19d5f722b2 100644 --- a/guilib/GUIListGroup.cpp +++ b/guilib/GUIListGroup.cpp @@ -53,6 +53,7 @@ void CGUIListGroup::AddControl(CGUIControl *control, int position /*= -1*/) control->GetControlType() == CGUIControl::GUICONTROL_LISTGROUP || control->GetControlType() == CGUIControl::GUICONTROL_IMAGE || control->GetControlType() == CGUIControl::GUICONTROL_BORDEREDIMAGE || + control->GetControlType() == CGUIControl::GUICONTROL_MULTI_IMAGE || control->GetControlType() == CGUIControl::GUICONTROL_MULTISELECT || control->GetControlType() == CGUIControl::GUICONTROL_TEXTBOX)) CLog::Log(LOGWARNING, "Trying to add unsupported control type %d", control->GetControlType()); |