From 3ed9f9ac388d142c4ad9ebba3a9fe6e17ccc3b0e Mon Sep 17 00:00:00 2001 From: Khinenw Date: Fri, 15 Jan 2021 17:48:30 +0900 Subject: Add IME support for Windows --- alacritty/src/window.rs | 5 ----- 1 file changed, 5 deletions(-) (limited to 'alacritty/src') diff --git a/alacritty/src/window.rs b/alacritty/src/window.rs index 418994ed..3661d406 100644 --- a/alacritty/src/window.rs +++ b/alacritty/src/window.rs @@ -421,7 +421,6 @@ impl Window { } /// Adjust the IME editor position according to the new location of the cursor. - #[cfg(not(windows))] pub fn update_ime_position(&mut self, point: Point, size: &SizeInfo) { let nspot_x = f64::from(size.padding_x() + point.col.0 as f32 * size.cell_width()); let nspot_y = f64::from(size.padding_y() + (point.line.0 + 1) as f32 * size.cell_height()); @@ -429,10 +428,6 @@ impl Window { self.window().set_ime_position(PhysicalPosition::new(nspot_x, nspot_y)); } - /// No-op, since Windows does not support IME positioning. - #[cfg(windows)] - pub fn update_ime_position(&mut self, _point: Point, _size_info: &SizeInfo) {} - pub fn swap_buffers(&self) { self.windowed_context.swap_buffers().expect("swap buffers"); } -- cgit