From eacc862d676300ca4363a6c31f8f1ba0c031a03d Mon Sep 17 00:00:00 2001 From: Brian Fiete Date: Mon, 14 Feb 2022 07:01:39 -0500 Subject: [PATCH] Fixed case where error could be shown multiple times on mouseover --- IDE/src/ui/SourceViewPanel.bf | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/IDE/src/ui/SourceViewPanel.bf b/IDE/src/ui/SourceViewPanel.bf index 8cb6081f..a068484a 100644 --- a/IDE/src/ui/SourceViewPanel.bf +++ b/IDE/src/ui/SourceViewPanel.bf @@ -5116,9 +5116,8 @@ namespace IDE.ui mClangHoverErrorData = null; } } -#endif - if ((parser != null) && (mIsBeefSource) && (!didShow)) + if ((parser != null) && (mIsBeefSource) && (!didShow) && (!mHoverWatch.mIsShown)) ErrorScope: { //TODO: Needed this?