mirror of
https://github.com/emilk/egui.git
synced 2026-06-26 22:53:14 -04:00
Tooltip fix: Only treat enabled widgets as interactive
This commit is contained in:
@@ -632,7 +632,7 @@ impl Response {
|
||||
vp.prev_frame
|
||||
.widgets
|
||||
.get_layer(layer_id)
|
||||
.any(|w| w.sense.interactive())
|
||||
.any(|w| w.enabled && w.sense.interactive())
|
||||
});
|
||||
|
||||
if tooltip_has_interactive_widget {
|
||||
|
||||
Reference in New Issue
Block a user