Skip to content

Commit

Permalink
Fix IME window position with scale factor greater than 1.0 (#9637)
Browse files Browse the repository at this point in the history
In #9456 I forgot to handle this...

Release Notes:

- N/A
  • Loading branch information
JunkuiZhang authored Mar 21, 2024
1 parent e1d1d57 commit d89905f
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions crates/gpui/src/platform/windows/window.rs
Original file line number Diff line number Diff line change
Expand Up @@ -689,11 +689,14 @@ impl WindowsWindowInner {
let caret_range = input_handler.selected_text_range().unwrap();
let caret_position = input_handler.bounds_for_range(caret_range).unwrap();
self.input_handler.set(Some(input_handler));
let scale_factor = self.scale_factor.get();
let config = CANDIDATEFORM {
dwStyle: CFS_CANDIDATEPOS,
// logical to physical
ptCurrentPos: POINT {
x: caret_position.origin.x.0 as i32,
y: caret_position.origin.y.0 as i32 + (caret_position.size.height.0 as i32 / 2),
x: (caret_position.origin.x.0 * scale_factor) as i32,
y: (caret_position.origin.y.0 * scale_factor) as i32
+ ((caret_position.size.height.0 * scale_factor) as i32 / 2),
},
..Default::default()
};
Expand Down

0 comments on commit d89905f

Please sign in to comment.