diff options
author | Maks Naumov <maksqwe1@ukr.net> | 2014-08-25 22:51:35 +0300 |
---|---|---|
committer | Maks Naumov <maksqwe1@ukr.net> | 2014-08-25 22:51:35 +0300 |
commit | c3a7a2e654a0b5a6e83c8936b643536d1c3c3889 (patch) | |
tree | 85ccc9fd82344d36388502c8841ccf39dccb2769 | |
parent | f60bdf7715b6808f85a549a32d0e422e23bf765f (diff) |
guilib: Fix CGUIListGroup::MoveRight()
-rw-r--r-- | xbmc/guilib/GUIListGroup.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xbmc/guilib/GUIListGroup.cpp b/xbmc/guilib/GUIListGroup.cpp index c57436013f..b7ba695684 100644 --- a/xbmc/guilib/GUIListGroup.cpp +++ b/xbmc/guilib/GUIListGroup.cpp @@ -212,9 +212,9 @@ bool CGUIListGroup::MoveRight() { for (iControls it = m_children.begin(); it != m_children.end(); it++) { - if ((*it)->GetControlType() == CGUIControl::GUICONTROL_MULTISELECT && ((CGUIMultiSelectTextControl *)(*it))->MoveLeft()) + if ((*it)->GetControlType() == CGUIControl::GUICONTROL_MULTISELECT && ((CGUIMultiSelectTextControl *)(*it))->MoveRight()) return true; - else if ((*it)->GetControlType() == CGUIControl::GUICONTROL_LISTGROUP && ((CGUIListGroup *)(*it))->MoveLeft()) + else if ((*it)->GetControlType() == CGUIControl::GUICONTROL_LISTGROUP && ((CGUIListGroup *)(*it))->MoveRight()) return true; } return false; |