diff options
author | Armin Weatherwax | 2011-05-01 15:41:03 +0200 |
---|---|---|
committer | Armin Weatherwax | 2011-05-17 07:52:28 +0200 |
commit | 1a7e0184f81fff7126e47f50bd915790afc118a9 (patch) | |
tree | c233c3c16ccdbf68c77edfb0c49673a8bb92fcac /linden/indra/newview/llviewermedia.cpp | |
parent | fix bug #879 context menu of line + text editors triggers select all even if ... (diff) | |
download | meta-impy-1a7e0184f81fff7126e47f50bd915790afc118a9.zip meta-impy-1a7e0184f81fff7126e47f50bd915790afc118a9.tar.gz meta-impy-1a7e0184f81fff7126e47f50bd915790afc118a9.tar.bz2 meta-impy-1a7e0184f81fff7126e47f50bd915790afc118a9.tar.xz |
show plugin debug messages also on windows
Diffstat (limited to '')
-rw-r--r-- | linden/indra/newview/llviewermedia.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/linden/indra/newview/llviewermedia.cpp b/linden/indra/newview/llviewermedia.cpp index c228468..84fd0ba 100644 --- a/linden/indra/newview/llviewermedia.cpp +++ b/linden/indra/newview/llviewermedia.cpp | |||
@@ -547,6 +547,13 @@ LLPluginClassMedia* LLViewerMediaImpl::newSourceFromMediaType(std::string media_ | |||
547 | 547 | ||
548 | if (media_source->init(launcher_name, plugin_name, gSavedSettings.getBOOL("PluginAttachDebuggerToPlugins"))) | 548 | if (media_source->init(launcher_name, plugin_name, gSavedSettings.getBOOL("PluginAttachDebuggerToPlugins"))) |
549 | { | 549 | { |
550 | #if LL_WINDOWS | ||
551 | if (gSavedSettings.getBOOL("ShowConsoleWindow")) | ||
552 | { | ||
553 | media_source->showConsole(); | ||
554 | } | ||
555 | #endif | ||
556 | |||
550 | return media_source; | 557 | return media_source; |
551 | } | 558 | } |
552 | else | 559 | else |