Skip to content

Commit e56d27d

Browse files
authored
Update popup.rs
1 parent cc6e9bd commit e56d27d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

crates/egui/src/containers/popup.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,8 @@ pub fn show_tooltip_at_pointer<R>(
8787

8888
// Add a small exclusion zone around the pointer to avoid tooltips
8989
// covering what we're hovering over.
90-
let mut pointer_rect = Rect::from_center_size(pointer_pos, Vec2::splat(24.0));
90+
let exclusion_size = Vec2::splat(48.0 * ctx.native_pixels_per_point().unwrap_or(1.0));
91+
let mut pointer_rect = Rect::from_center_size(pointer_pos, exclusion_size);
9192

9293
// Keep the left edge of the tooltip in line with the cursor:
9394
pointer_rect.min.x = pointer_pos.x;

0 commit comments

Comments
 (0)