diff options
| -rw-r--r-- | indra/llplugin/llpluginclassmedia.cpp | 10 | 
1 files changed, 9 insertions, 1 deletions
| diff --git a/indra/llplugin/llpluginclassmedia.cpp b/indra/llplugin/llpluginclassmedia.cpp index 61d779b98d..e514b5abbe 100644 --- a/indra/llplugin/llpluginclassmedia.cpp +++ b/indra/llplugin/llpluginclassmedia.cpp @@ -522,7 +522,15 @@ bool LLPluginClassMedia::keyEvent(EKeyEventType type, int key_code, MASK modifie  			}  		break;  	} -	 + +#if LL_DARWIN	 +	if(modifiers & MASK_ALT) +	{ +		// Option-key modified characters should be handled by the unicode input path instead of this one. +		result = false; +	} +#endif +  	if(result)  	{  		LLPluginMessage message(LLPLUGIN_MESSAGE_CLASS_MEDIA, "key_event"); | 
