improving item button logic

fix spelling
This commit is contained in:
Lars Brubaker 2021-02-05 17:52:19 -08:00
parent 90934aa04f
commit 2026bb220c
9 changed files with 18 additions and 11 deletions

View file

@ -39,7 +39,10 @@ namespace MatterHackers.MatterControl.DesignTools
public string HelpText { get; set; }
public Action<GuiWidget> SetStates { get; set; }
/// <summary>
/// First parameter is the actual button, second parameter is the row containing the button
/// </summary>
public Action<GuiWidget, GuiWidget> SetStates { get; set; }
public Action Action { get; set; }
}