You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If a tooltip contains something that has a tooltip, then we can get into a situation where we get a tooltip for a tooltip for a tooltip… This is not a problem in of itself, but we have some helpful "Open next tooltip quickly" logic that is meant for the situation where you have multiple widgets next to each other and want to quickly inspect their tooltips. That logic means the tooltip of the widget in a tooltip opens right away, causing the problem in the video.
One solution is to never apply that "if a tooltip is already open" logic for widgets in a tooltip layer (Order::Tooltip). Another is to only apply it if the open tooltip is in the same egui::LayerId as the previous tooltip.
I don't understand why it only happens on web though 🤔
Repro:
tooltip_overload.mp4
This doesn't seem to happen with the native built.
The text was updated successfully, but these errors were encountered: