From e47b64d4aaa352bc7d0f99fa6eb5c26bd3a8ac7c Mon Sep 17 00:00:00 2001 From: vanhofen Date: Fri, 11 Nov 2016 01:11:02 +0100 Subject: [PATCH] eventlist: show left/right buttons in footer Origin commit data ------------------ Commit: https://github.com/neutrino-images/ni-neutrino/commit/8fab6e7212aeabe98a73564afe715274261224fa Author: vanhofen Date: 2016-11-11 (Fri, 11 Nov 2016) Origin message was: ------------------ - eventlist: show left/right buttons in footer --- src/gui/eventlist.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/gui/eventlist.cpp b/src/gui/eventlist.cpp index 260aa4c10..aa5fd62c1 100644 --- a/src/gui/eventlist.cpp +++ b/src/gui/eventlist.cpp @@ -1006,6 +1006,16 @@ void CEventList::showFunctionBar(t_channel_id channel_id) buttons[btn_cnt].locale = LOCALE_TIMERLIST_NAME; btn_cnt++; + //NI left button + buttons[btn_cnt].button = NEUTRINO_ICON_BUTTON_LEFT; + buttons[btn_cnt].locale = NONEXISTANT_LOCALE; + btn_cnt++; + + //NI right button + buttons[btn_cnt].button = NEUTRINO_ICON_BUTTON_RIGHT; + buttons[btn_cnt].locale = NONEXISTANT_LOCALE; + btn_cnt++; + ::paintButtons(bx, by, bw, btn_cnt, buttons, bw, bh); }