fix other-shift handling so that it does not mess up the handling of the main key

svn: r3674
This commit is contained in:
Matthew Flatt 2006-07-10 19:32:46 +00:00
parent c2eec31714
commit f47d4a05c0

View File

@ -1753,11 +1753,11 @@ void wxWindow::WindowEventHandler(Widget w,
kc = 0;
if (XMB_STR_PREFERRED_STATUS(other_status, xev))
kc = extract_string_key(other_str, other_slen);
other_kc = extract_string_key(other_str, other_slen);
else if (XMB_KC_STATUS(other_status))
other_kc = CharCodeXToWX(other_keysym);
else if (XMB_STR_STATUS(other_status))
kc = extract_string_key(other_str, other_slen);
other_kc = extract_string_key(other_str, other_slen);
else
other_kc = 0;