Skip to content
Snippets Groups Projects
Commit 3b8d7c61 authored by David Parks's avatar David Parks
Browse files

Merge branch 'DRTVWR-559' of github.com:secondlife/viewer into DRTVWR-559

parents b132e2ee cb8c91ff
No related branches found
No related tags found
No related merge requests found
......@@ -550,7 +550,16 @@ attributedStringInfo getSegments(NSAttributedString *str)
if (mModifiers & mask)
{
eventData.mKeyEvent = NativeKeyEventData::KEYDOWN;
callKeyDown(&eventData, [theEvent keyCode], 0, [[theEvent characters] characterAtIndex:0]);
wchar_t c = 0;
if([theEvent type] == NSEventTypeKeyDown)
{
// characters property is only valid when the event is of type KeyDown or KeyUp
// https://developer.apple.com/documentation/appkit/nsevent/1534183-characters?language=objc
c = [[theEvent characters] characterAtIndex:0];
}
callKeyDown(&eventData, [theEvent keyCode], 0, c);
}
else
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment