From 54155f4a28c4f2b2f36ee4bad90f83f334a934cf Mon Sep 17 00:00:00 2001 From: vanhofen Date: Sat, 6 Aug 2016 08:42:54 +0200 Subject: [PATCH] epgview: add imdb button to footer Origin commit data ------------------ Branch: ni/coolstream Commit: https://github.com/neutrino-images/ni-neutrino/commit/ed71c60a6f8b2c25b66a4117850acbe72dfda2ca Author: vanhofen Date: 2016-08-06 (Sat, 06 Aug 2016) Origin message was: ------------------ - epgview: add imdb button to footer ------------------ No further description and justification available within origin commit message! ------------------ This commit was generated by Migit --- src/gui/epgview.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/gui/epgview.cpp b/src/gui/epgview.cpp index ff3920590..ddce0008d 100644 --- a/src/gui/epgview.cpp +++ b/src/gui/epgview.cpp @@ -1443,6 +1443,7 @@ struct button_label EpgButtons[][EpgButtonsMax] = }, { // movieplayer mode { NEUTRINO_ICON_BUTTON_RED, LOCALE_EPG_SAVING }, + { NEUTRINO_ICON_BUTTON_GREEN, LOCALE_IMDB_INFO }, //NI { NEUTRINO_ICON_BUTTON_0, LOCALE_TMDB_INFO } //NI } }; @@ -1478,7 +1479,7 @@ void CEpgData::showTimerEventBar (bool pshow, bool adzap, bool mp_info) bool fscr = (has_follow_screenings && !call_fromfollowlist); EpgButtons[fscr ? 0 : 1][1].locale = imdb_active ? LOCALE_IMDB_INFO_SAVE : LOCALE_IMDB_INFO; //NI if (mp_info) - ::paintButtons(x, y, w, tmdb ? 2 : 1, EpgButtons[2], w, h); + ::paintButtons(x, y, w, tmdb ? 3 : 2, EpgButtons[2], w, h); //NI else { int c = EpgButtonsMax;