From 7f2c69aa829ba88c67b0290a02595035d1b592f1 Mon Sep 17 00:00:00 2001 From: svenhoefer Date: Fri, 7 Nov 2014 15:41:11 +0100 Subject: [PATCH] - CPluginsExec::exec(): show possible script output --- src/system/setting_helpers.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/system/setting_helpers.cpp b/src/system/setting_helpers.cpp index 6347baaea..c25a1157e 100644 --- a/src/system/setting_helpers.cpp +++ b/src/system/setting_helpers.cpp @@ -387,6 +387,9 @@ int CPluginsExec::exec(CMenuTarget* parent, const std::string & actionKey) g_PluginList->startPlugin(sel); } + if (!g_PluginList->getScriptOutput().empty()) + ShowMsg(LOCALE_PLUGINS_RESULT, g_PluginList->getScriptOutput(), CMessageBox::mbrBack, CMessageBox::mbBack, NEUTRINO_ICON_SHELL); + if (g_PluginList->getIntegration(sel) == CPlugins::I_TYPE_DISABLED) return menu_return::RETURN_EXIT;