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); } }