Fix missing popovers - use ContainsFirstUnderMouseRecursive

This commit is contained in:
John Lewin 2018-12-20 12:04:29 -08:00
parent cbcc2dc019
commit b6d30bf781

View file

@ -441,7 +441,7 @@ namespace MatterHackers.MatterControl.SlicerConfiguration
settingsRow.MouseEnterBounds += (s, e) =>
{
// Only display popovers when we're the active widget, exit if we're not first under mouse
if (!this.FirstWidgetUnderMouse)
if (!this.ContainsFirstUnderMouseRecursive())
{
return;
}