1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 04:22:20 +02:00

Fixed mouse capture for invisible symbol rename panel

This commit is contained in:
Brian Fiete 2020-01-25 06:22:06 -08:00
parent 730ae877fa
commit bde2bc3603

View file

@ -850,6 +850,13 @@ namespace IDE.ui
} }
} }
public override bool Contains(float x, float y)
{
if (mKind == Kind.ShowFileReferences)
return false;
return base.Contains(x, y);
}
public void Close() public void Close()
{ {
if (mClosed) if (mClosed)