From 4151f12d2633b609bf1316613598e728d966bc23 Mon Sep 17 00:00:00 2001 From: vanhofen Date: Wed, 25 Jul 2018 22:58:43 +0200 Subject: [PATCH] neutrino: fix bouquet align when zap via history or current transponder list Origin commit data ------------------ Commit: https://github.com/neutrino-images/ni-neutrino/commit/901a543c916309a15b2e3b7d08d68de074726cf3 Author: vanhofen Date: 2018-07-25 (Wed, 25 Jul 2018) Origin message was: ------------------ - neutrino: fix bouquet align when zap via history or current transponder list --- src/neutrino.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/neutrino.cpp b/src/neutrino.cpp index aaaeca510..def7c01ad 100644 --- a/src/neutrino.cpp +++ b/src/neutrino.cpp @@ -3225,7 +3225,7 @@ int CNeutrinoApp::showChannelList(const neutrino_msg_t _msg, bool from_menu) SetChannelMode(LIST_MODE_PROV); nNewChannel = bouquetList->exec(true); } else if (msg == (neutrino_msg_t) g_settings.key_zaphistory || msg == (neutrino_msg_t) g_settings.key_current_transponder) { - channelList->showLiveBouquet(msg); + nNewChannel = channelList->showLiveBouquet(msg); } _repeat: printf("CNeutrinoApp::showChannelList: nNewChannel %d\n", nNewChannel);fflush(stdout);