diff options
author | xhaggi <sascha.woo@gmail.com> | 2014-12-03 23:52:30 +0100 |
---|---|---|
committer | xhaggi <sascha.woo@gmail.com> | 2014-12-03 23:52:30 +0100 |
commit | 30fa048c8fb78eb49dd219c16b026f04e7db4243 (patch) | |
tree | 1d4fd0c2a4cdc4b542eb0bebfd0704f62dfc9253 | |
parent | 4a1ad6c3605316fbc45960fe56aec758e3ddc001 (diff) |
[pvr] fix: separate sort orders for each directory in recordings window
-rw-r--r-- | xbmc/pvr/windows/GUIViewStatePVR.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xbmc/pvr/windows/GUIViewStatePVR.cpp b/xbmc/pvr/windows/GUIViewStatePVR.cpp index 252b23fe12..f3e527edb6 100644 --- a/xbmc/pvr/windows/GUIViewStatePVR.cpp +++ b/xbmc/pvr/windows/GUIViewStatePVR.cpp @@ -53,12 +53,12 @@ CGUIViewStateWindowPVRRecordings::CGUIViewStateWindowPVRRecordings(const int win // Default sorting SetSortMethod(SortByDate); - LoadViewState("pvr://recordings/", m_windowId); + LoadViewState(items.GetPath(), m_windowId); } void CGUIViewStateWindowPVRRecordings::SaveViewState(void) { - SaveViewToDb("pvr://recordings/", m_windowId, CViewStateSettings::Get().Get("pvrrecordings")); + SaveViewToDb(m_items.GetPath(), m_windowId, CViewStateSettings::Get().Get("pvrrecordings")); } bool CGUIViewStateWindowPVRRecordings::HideParentDirItems(void) |