diff options
-rw-r--r-- | xbmc/epg/GUIEPGGridContainer.cpp | 4 | ||||
-rw-r--r-- | xbmc/pvr/windows/GUIWindowPVRGuide.cpp | 1 |
2 files changed, 4 insertions, 1 deletions
diff --git a/xbmc/epg/GUIEPGGridContainer.cpp b/xbmc/epg/GUIEPGGridContainer.cpp index 0196d19093..8f84470b3f 100644 --- a/xbmc/epg/GUIEPGGridContainer.cpp +++ b/xbmc/epg/GUIEPGGridContainer.cpp @@ -633,6 +633,10 @@ bool CGUIEPGGridContainer::OnAction(const CAction &action) ScrollToBlockOffset(m_blockOffset - (12 * 60 / MINSPERBLOCK)); return true; + case REMOTE_0: + GoToNow(); + return true; + case ACTION_PAGE_UP: if (m_channelOffset == 0) { // already on the first page, so move to the first item diff --git a/xbmc/pvr/windows/GUIWindowPVRGuide.cpp b/xbmc/pvr/windows/GUIWindowPVRGuide.cpp index eb3d86d229..536aabe070 100644 --- a/xbmc/pvr/windows/GUIWindowPVRGuide.cpp +++ b/xbmc/pvr/windows/GUIWindowPVRGuide.cpp @@ -159,7 +159,6 @@ bool CGUIWindowPVRGuide::OnAction(const CAction &action) { switch (action.GetID()) { - case REMOTE_0: case REMOTE_1: case REMOTE_2: case REMOTE_3: |