Revert "Fix: #485 Remove used modifiers before figuring out keybinding."

This reverts commit 25c210b851.
This commit is contained in:
Dave Davenport 2016-10-23 13:23:04 +02:00
parent 25c210b851
commit 0ae0d50bbc
1 changed files with 1 additions and 3 deletions

View File

@ -1189,10 +1189,8 @@ static void rofi_view_handle_keypress ( RofiViewState *state, xkb_stuff *xkb, xc
len = xkb_state_key_get_utf8 ( xkb->state, xkpe->detail, pad, sizeof ( pad ) );
}
xkb_mod_mask_t mod = xkb_state_serialize_mods ( xkb->state, XKB_STATE_MODS_EFFECTIVE );
xkb_mod_mask_t rrstate = xkb_state_mod_mask_remove_consumed ( xkb->state, key,mod );
unsigned int modstate = x11_canonalize_mask ( xkpe->state );
unsigned int modstate = x11_canonalize_mask ( rrstate );
if ( key != XKB_KEY_NoSymbol ) {
KeyBindingAction action;
action = abe_find_action ( modstate, key );