1
0
mirror of https://github.com/emilk/egui.git synced 2026-06-26 22:53:14 -04:00

Fix backdrop being active for tooltips

This commit is contained in:
lucasmerlin
2026-03-28 21:39:35 +01:00
parent 73271a6362
commit b7662931b0

View File

@@ -28,7 +28,8 @@ impl Tooltip<'_> {
popup: Popup::new(parent_widget, ctx, anchor.into(), parent_layer)
.kind(PopupKind::Tooltip)
.gap(4.0)
.sense(Sense::hover()),
.sense(Sense::hover())
.backdrop(false),
parent_layer,
parent_widget,
}