From 60b162ba9019d9f2c347afea2e214b570ec87206 Mon Sep 17 00:00:00 2001 From: Brian Fiete Date: Mon, 12 Oct 2020 01:24:39 -0700 Subject: [PATCH] Fixed crash hovering over tab for new file --- IDE/src/IDEApp.bf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IDE/src/IDEApp.bf b/IDE/src/IDEApp.bf index 606fb0dd..9818703c 100644 --- a/IDE/src/IDEApp.bf +++ b/IDE/src/IDEApp.bf @@ -5822,7 +5822,7 @@ namespace IDE if (DarkTooltipManager.CheckMouseover(this, 25, out point)) { var sourceViewPanel = mContent as SourceViewPanel; - if (sourceViewPanel != null) + if ((sourceViewPanel != null) && (sourceViewPanel.mFilePath != null)) DarkTooltipManager.ShowTooltip(sourceViewPanel.mFilePath, this, point.x, 14); } }