mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 20:42:21 +02:00
Fixed crash hovering over tab for new file
This commit is contained in:
parent
21f65c5440
commit
60b162ba90
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue