1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2024-11-11 13:50:48 -05:00

Issue #268 Repair combined key input 'e --> é

This commit is contained in:
Dave Davenport 2015-11-20 08:19:48 +01:00
parent 38d2bc717a
commit ca5ea414c8

View file

@ -1508,6 +1508,11 @@ MenuReturn menu ( Switcher *sw, char **input, char *prompt, unsigned int *select
if ( state.quit ) {
continue;
}
// This is needed for letting the Input Method handle combined keys.
// E.g. `e into è
if ( XFilterEvent ( &ev, main_window) ) {
continue;
}
int rc = textbox_keypress ( state.text, xic, &ev );
// Row is accepted.