We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc6e9bd commit e56d27dCopy full SHA for e56d27d
crates/egui/src/containers/popup.rs
@@ -87,7 +87,8 @@ pub fn show_tooltip_at_pointer<R>(
87
88
// Add a small exclusion zone around the pointer to avoid tooltips
89
// covering what we're hovering over.
90
- let mut pointer_rect = Rect::from_center_size(pointer_pos, Vec2::splat(24.0));
+ 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);
92
93
// Keep the left edge of the tooltip in line with the cursor:
94
pointer_rect.min.x = pointer_pos.x;
0 commit comments