mirror of
https://github.com/emilk/egui.git
synced 2026-09-01 22:30:03 -04:00
Fix backdrop being active for tooltips
This commit is contained in:
@@ -28,7 +28,8 @@ impl Tooltip<'_> {
|
|||||||
popup: Popup::new(parent_widget, ctx, anchor.into(), parent_layer)
|
popup: Popup::new(parent_widget, ctx, anchor.into(), parent_layer)
|
||||||
.kind(PopupKind::Tooltip)
|
.kind(PopupKind::Tooltip)
|
||||||
.gap(4.0)
|
.gap(4.0)
|
||||||
.sense(Sense::hover()),
|
.sense(Sense::hover())
|
||||||
|
.backdrop(false),
|
||||||
parent_layer,
|
parent_layer,
|
||||||
parent_widget,
|
parent_widget,
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user