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

Fixed some info mouseovers while debugger is active

This commit is contained in:
Brian Fiete 2022-03-19 08:19:48 -07:00
parent 323e69bbd6
commit fad6b49908
2 changed files with 3 additions and 1 deletions

View file

@ -5249,7 +5249,7 @@ namespace IDE.ui
((debugExpr == null) || (!debugExpr.StartsWith(':'))))
{
if (((!gApp.mDebugger.mIsRunning) || (!mHoverWatch.mIsShown)) && // Don't show extended information for debug watches
if (((!gApp.mDebugger.mIsRunning) || (!mHoverWatch.HasDisplay)) && // Don't show extended information for debug watches
(!handlingHoverResolveTask) && (ResolveCompiler != null) && (!ResolveCompiler.mThreadWorkerHi.mThreadRunning) && (gApp.mSettings.mEditorSettings.mHiliteCursorReferences) && (!gApp.mDeterministic))
{
ResolveParams resolveParams = new .();