mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-15 14:54:09 +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))
|
if (DarkTooltipManager.CheckMouseover(this, 25, out point))
|
||||||
{
|
{
|
||||||
var sourceViewPanel = mContent as SourceViewPanel;
|
var sourceViewPanel = mContent as SourceViewPanel;
|
||||||
if (sourceViewPanel != null)
|
if ((sourceViewPanel != null) && (sourceViewPanel.mFilePath != null))
|
||||||
DarkTooltipManager.ShowTooltip(sourceViewPanel.mFilePath, this, point.x, 14);
|
DarkTooltipManager.ShowTooltip(sourceViewPanel.mFilePath, this, point.x, 14);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue