From e8646e73d22ca431eed93afcf7ddd888f697a063 Mon Sep 17 00:00:00 2001 From: vanhofen Date: Fri, 21 Sep 2018 00:05:28 +0200 Subject: [PATCH] webtv-setup: show hintbox when reloading channels Origin commit data ------------------ Commit: https://github.com/neutrino-images/ni-neutrino/commit/1f49160ee2466ce4e17560b332c0ea31371d06ea Author: vanhofen Date: 2018-09-21 (Fri, 21 Sep 2018) Origin message was: ------------------ - webtv-setup: show hintbox when reloading channels --- src/gui/webtv_setup.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/gui/webtv_setup.cpp b/src/gui/webtv_setup.cpp index 056c2f68d..a1a4871f0 100644 --- a/src/gui/webtv_setup.cpp +++ b/src/gui/webtv_setup.cpp @@ -192,6 +192,8 @@ int CWebTVSetup::Show() if (changed) { + CHintBox hint(LOCALE_MESSAGEBOX_INFO, LOCALE_SERVICEMENU_RELOAD_HINT); + hint.paint(); g_settings.webtv_xml.clear(); for (int i = item_offset; i < m->getItemsCount(); i++) { @@ -202,6 +204,7 @@ int CWebTVSetup::Show() webtv_xml_auto(); //NI g_Zapit->reinitChannels(); changed = false; + hint.hide(); } delete m;