Require unlocalized group identifier, restore missing buttons

This commit is contained in:
John Lewin 2019-06-13 08:28:09 -07:00
parent 24065be0fb
commit b4b18b14f2
3 changed files with 17 additions and 11 deletions

View file

@ -61,11 +61,16 @@ namespace MatterHackers.Agg.UI
public class OperationGroup : SceneSelectionOperation
{
public OperationGroup(string groupName)
{
this.GroupName = groupName;
}
public List<SceneSelectionOperation> Operations { get; set; } = new List<SceneSelectionOperation>();
public bool StickySelection { get; internal set; }
public string GroupName { get; set; }
public string GroupName { get; }
}
}