diff options
author | Ted Yin <tederminant@gmail.com> | 2017-07-24 20:54:06 -0400 |
---|---|---|
committer | Joe Wilm <jwilm@users.noreply.github.com> | 2017-07-24 17:54:06 -0700 |
commit | 4c4c2f5f5c81e6efb580e50ea993606160809469 (patch) | |
tree | c7a1abe4b5e926e9dcf25f2c64965343ef738b05 /src/main.rs | |
parent | 49c73f6d55e5a681a0e0f836cd3e9fe6af30788f (diff) | |
download | alacritty-4c4c2f5f5c81e6efb580e50ea993606160809469.tar.gz alacritty-4c4c2f5f5c81e6efb580e50ea993606160809469.zip |
add support for X input method (#691)
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs index 9db5ce58..472e4144 100644 --- a/src/main.rs +++ b/src/main.rs @@ -172,6 +172,8 @@ fn run(mut config: Config, options: cli::Options) -> Result<(), Box<Error>> { // Maybe draw the terminal if terminal.needs_draw() { + // Try to update the position of the input method editor + display.update_ime_position(&terminal); // Handle pending resize events // // The second argument is a list of types that want to be notified |