mirror of
https://github.com/beefytech/Beef.git
synced 2025-07-04 15:26:00 +02:00
Added watch lock, watch stack offsets (ie: {1}, {Func^2})
This commit is contained in:
parent
6833c12fc8
commit
56cc35f266
10 changed files with 558 additions and 35 deletions
|
@ -131,6 +131,14 @@ namespace Beefy.theme.dark
|
|||
CloseSubMenu();
|
||||
}
|
||||
}
|
||||
|
||||
if (mMenuItem.mTooltip != null)
|
||||
{
|
||||
if (DarkTooltipManager.CheckMouseover(this, 20, var mousePoint))
|
||||
{
|
||||
DarkTooltipManager.ShowTooltip(mMenuItem.mTooltip, this, mWidth + GS!(8), GS!(-8));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public override void Submit()
|
||||
|
|
|
@ -564,6 +564,7 @@ namespace Beefy.widgets
|
|||
{
|
||||
public Menu mParent;
|
||||
public String mLabel ~ delete _;
|
||||
public String mTooltip ~ delete _;
|
||||
public List<Menu> mItems = new List<Menu>() ~ DeleteContainerAndItems!(_);
|
||||
|
||||
public Event<delegate void(Menu menu)> mOnMenuItemSelected ~ _.Dispose();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue