From 332ebb6ed2420e4104ed164208420110855b829a Mon Sep 17 00:00:00 2001 From: ronie Date: Sun, 10 Jan 2016 19:35:07 +0100 Subject: fix Container.SortOrder infolabel --- xbmc/view/GUIViewState.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xbmc/view/GUIViewState.cpp b/xbmc/view/GUIViewState.cpp index b3690669b2..2fa00b70b5 100644 --- a/xbmc/view/GUIViewState.cpp +++ b/xbmc/view/GUIViewState.cpp @@ -212,7 +212,7 @@ SortOrder CGUIViewState::GetSortOrder() const int CGUIViewState::GetSortOrderLabel() const { if (m_currentSortMethod >= 0 && m_currentSortMethod < (int)m_sortMethods.size()) - if (m_sortMethods[m_currentSortMethod].m_sortDescription.sortOrder == SortOrderAscending) + if (m_sortMethods[m_currentSortMethod].m_sortDescription.sortOrder == SortOrderDescending) return 585; return 584; // default sort order label 'Ascending' -- cgit v1.2.3