Skip to content

Commit

Permalink
x11: add workaround for disabling IME on gnome
Browse files Browse the repository at this point in the history
GNOME doesn't list that there's a _NONE_ style at all, but it still
works if you use it.
  • Loading branch information
kchibisov authored and notgull committed Dec 28, 2024
1 parent 6896de5 commit 5ea81ef
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/changelog/unreleased.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ changelog entry.
- Added `Window::safe_area`, which describes the area of the surface that is unobstructed.
- On X11, Wayland, Windows and macOS, improved scancode conversions for more obscure key codes.
- Add ability to make non-activating window on macOS using `NSPanel` with `NSWindowStyleMask::NonactivatingPanel`.
- On X11, add a workaround for disabling IME on GNOME.

### Changed

Expand Down
4 changes: 3 additions & 1 deletion src/platform_impl/linux/x11/ime/input_method.rs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,9 @@ impl InputMethod {
}

let preedit_style = preedit_style.unwrap_or_else(|| none_style.unwrap());
let none_style = none_style.unwrap_or(preedit_style);
// Always initialize none style even when it's not advertised, since it seems to work
// regardless...
let none_style = none_style.unwrap_or(Style::None(XIM_NONE_STYLE));

Some(InputMethod { im, _name: name, preedit_style, none_style })
}
Expand Down

0 comments on commit 5ea81ef

Please sign in to comment.