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:
parent
38d2bc717a
commit
ca5ea414c8
1 changed files with 5 additions and 0 deletions
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue