If some key modifiers are pressed other than shift, send postKeyEvent().
This commit is contained in:
Родитель
7bc7b9f329
Коммит
81b9086de5
|
@ -308,8 +308,8 @@ namespace entry
|
|||
{
|
||||
m_eventQueue.postExitEvent();
|
||||
}
|
||||
else if ( (Key::Key0 <= key && key <= Key::KeyZ)
|
||||
|| (Key::Esc <= key && key <= Key::Minus) )
|
||||
else if (0 != (modifiers & (Modifier::LeftShift|Modifier::RightShift) )
|
||||
&& ( (Key::Key0 <= key && key <= Key::KeyZ) || (Key::Esc <= key && key <= Key::Minus) ) )
|
||||
{
|
||||
m_eventQueue.postCharEvent(s_defaultWindow, 1, pressedChar);
|
||||
return false;
|
||||
|
|
Загрузка…
Ссылка в новой задаче