Skip to content

Commit c8d3e32

Browse files
committed
refactor: adjust candidate window client area size
1 parent 9f7e5a4 commit c8d3e32

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

chewing_tip/src/ts/ui_elements/candidate_list.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -266,8 +266,8 @@ impl View for RenderedView {
266266
let width = width as f32;
267267
let height = height as f32;
268268
// Convert to HW pixels
269-
let hw_width = width * scale + 10.0;
270-
let hw_height = height * scale + 10.0;
269+
let hw_width = width * scale + 25.0;
270+
let hw_height = height * scale + 25.0;
271271
Ok(RenderedMetrics {
272272
width,
273273
height,

0 commit comments

Comments
 (0)