mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-11 04:52:21 +02:00
Fixed error mouseover
This commit is contained in:
parent
cd3318cc3e
commit
8d95b97e87
1 changed files with 7 additions and 1 deletions
|
@ -5043,6 +5043,12 @@ namespace IDE.ui
|
||||||
didShow = mHoverWatch.Show(this, x, y, origDebugExpr ?? debugExpr, debugExpr);
|
didShow = mHoverWatch.Show(this, x, y, origDebugExpr ?? debugExpr, debugExpr);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ((handlingHoverResolveTask) && (mHoverWatch.mIsShown))
|
||||||
|
{
|
||||||
|
// Keep existing content
|
||||||
|
didShow = true;
|
||||||
|
}
|
||||||
|
|
||||||
if ((mHoverResolveTask == null) &&
|
if ((mHoverResolveTask == null) &&
|
||||||
((debugExpr == null) || (!debugExpr.StartsWith(':'))))
|
((debugExpr == null) || (!debugExpr.StartsWith(':'))))
|
||||||
{
|
{
|
||||||
|
@ -5174,7 +5180,7 @@ namespace IDE.ui
|
||||||
if (debugExpr != null)
|
if (debugExpr != null)
|
||||||
mHoverWatch.mEvalString.Set(debugExpr); // Set to old debugStr for comparison
|
mHoverWatch.mEvalString.Set(debugExpr); // Set to old debugStr for comparison
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
triedShow = false;
|
triedShow = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue