From f708cbcbb9e77248998115a347f6c0d4e92177a3 Mon Sep 17 00:00:00 2001 From: Christian Wieninger Date: Thu, 17 Jan 2008 20:12:19 +0100 Subject: - spanish translation update for 'only'-plugins - favorites menu before 'what's on next' - jump to corresponding broadcast in schedule after shifting in the other menus --- epgsearchcfg.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'epgsearchcfg.c') diff --git a/epgsearchcfg.c b/epgsearchcfg.c index 8ed31e2..a3c8653 100644 --- a/epgsearchcfg.c +++ b/epgsearchcfg.c @@ -105,6 +105,19 @@ int cShowMode::Compare(const cListObject &ListObject) const if (mode == showFavorites && p->mode != showFavorites) return 1; if (p->mode == showFavorites && mode != showFavorites) return -1; } + if (EPGSearchConfig.showFavoritesMenu == 3) + { + if (mode == showFavorites) + { + if (p->mode < showNext) return 1; + else return -1; + } + if (p->mode == showFavorites) + { + if (mode < showNext) return -1; + else return 1; + } + } if (mode > showNext && p->mode > showNext) return seekTime - p->seekTime; else -- cgit v1.2.3