mirror of
https://github.com/edu4rdshl/gnome-shell.git
synced 2026-07-17 23:24:51 +00:00
inputMethod: Pass all key events through the current IM method
Even though we are using an "xkb" source, it still makes sense to pass the event through the IBus simple engine, in order to let it handle compose keys and ctrl+shift+[u|e]. https://gitlab.gnome.org/GNOME/gnome-shell/issues/115 Closes: #115
This commit is contained in:
parent
b81d24fdb4
commit
36c7d65ccf
1 changed files with 1 additions and 2 deletions
|
|
@ -188,8 +188,7 @@ var InputMethod = new Lang.Class({
|
|||
vfunc_filter_key_event(event) {
|
||||
if (!this._context || !this._enabled)
|
||||
return false;
|
||||
if (!this._currentSource ||
|
||||
this._currentSource.type == Keyboard.INPUT_SOURCE_TYPE_XKB)
|
||||
if (!this._currentSource)
|
||||
return false;
|
||||
|
||||
let state = event.get_state();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue