mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-26 11:38:02 +02:00
Added an origX/origY to MouseClick
This commit is contained in:
parent
5f949c177d
commit
a51fa2b657
14 changed files with 76 additions and 34 deletions
|
@ -36,9 +36,9 @@ namespace IDE.ui
|
|||
gApp.SetCursor(.Pointer);
|
||||
}
|
||||
|
||||
public override void MouseClicked(float x, float y, int32 btn)
|
||||
public override void MouseClicked(float x, float y, float origX, float origY, int32 btn)
|
||||
{
|
||||
base.MouseClicked(x, y, btn);
|
||||
base.MouseClicked(x, y, origX, origY, btn);
|
||||
|
||||
gApp.[Friend]mDeferredOpen = .Workspace;
|
||||
String.NewOrSet!(gApp.[Friend]mDeferredOpenFileName, mPath);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue