From 0b130e0a6e12ff86b30c5564ac8258dd32df6a45 Mon Sep 17 00:00:00 2001 From: vanhofen Date: Sat, 11 Feb 2017 11:15:09 +0100 Subject: [PATCH] pluginlist: add default timeout to plugin-output ... to avoid a blocked system. Without timeout all upcoming timers will be ignored, if user doesn't confirm the plugin-output. Origin commit data ------------------ Branch: ni/coolstream Commit: https://github.com/neutrino-images/ni-neutrino/commit/274b117f3457f8a5f73c695f4aaeff3b433d36d2 Author: vanhofen Date: 2017-02-11 (Sat, 11 Feb 2017) Origin message was: ------------------ - pluginlist: add default timeout to plugin-output ... to avoid a blocked system. Without timeout all upcoming timers will be ignored, if user doesn't confirm the plugin-output. ------------------ This commit was generated by Migit --- src/gui/pluginlist.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/pluginlist.cpp b/src/gui/pluginlist.cpp index 18db834ec..f44432096 100644 --- a/src/gui/pluginlist.cpp +++ b/src/gui/pluginlist.cpp @@ -77,7 +77,7 @@ int CPluginList::run() g_PluginList->startPlugin(number); if (!g_PluginList->getScriptOutput().empty()) { hide(); - ShowMsg(LOCALE_PLUGINS_RESULT, g_PluginList->getScriptOutput(), CMsgBox::mbrBack, CMsgBox::mbBack, NEUTRINO_ICON_SHELL); + ShowMsg(LOCALE_PLUGINS_RESULT, g_PluginList->getScriptOutput(), CMsgBox::mbrBack, CMsgBox::mbBack, NEUTRINO_ICON_SHELL, 320, g_settings.timing[SNeutrinoSettings::TIMING_STATIC_MESSAGES]); } return menu_return::RETURN_REPAINT; }