1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 12:32:20 +02:00

Fixed error mouseover

This commit is contained in:
Brian Fiete 2022-02-12 12:56:48 -05:00
parent cd3318cc3e
commit 8d95b97e87

View file

@ -5043,6 +5043,12 @@ namespace IDE.ui
didShow = mHoverWatch.Show(this, x, y, origDebugExpr ?? debugExpr, debugExpr);
}
if ((handlingHoverResolveTask) && (mHoverWatch.mIsShown))
{
// Keep existing content
didShow = true;
}
if ((mHoverResolveTask == null) &&
((debugExpr == null) || (!debugExpr.StartsWith(':'))))
{
@ -5174,7 +5180,7 @@ namespace IDE.ui
if (debugExpr != null)
mHoverWatch.mEvalString.Set(debugExpr); // Set to old debugStr for comparison
}
else
else
triedShow = false;
}
}