mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 12:32:20 +02:00
Fixed some info mouseovers while debugger is active
This commit is contained in:
parent
323e69bbd6
commit
fad6b49908
2 changed files with 3 additions and 1 deletions
|
@ -288,6 +288,8 @@ namespace IDE.ui
|
|||
Clear();
|
||||
}
|
||||
|
||||
public bool HasDisplay => mListView != null;
|
||||
|
||||
public override void Draw(Graphics g)
|
||||
{
|
||||
base.Draw(g);
|
||||
|
|
|
@ -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 .();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue