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:
parent
730ae877fa
commit
bde2bc3603
1 changed files with 7 additions and 0 deletions
|
@ -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)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue