Update property group type enum

This commit is contained in:
Ronald Barendse
2021-06-30 14:39:31 +02:00
parent 2b6e87d1e2
commit 68db8b9ea0

View File

@@ -6,14 +6,12 @@
public enum PropertyGroupType : short
{
/// <summary>
/// Display as a group (using a header).
/// Display property types in a group.
/// </summary>
Group = 0,
/// <summary>
/// Display as an app (using a name and icon).
/// Display property types in a tab.
/// </summary>
App = 1,
//Tab = 2,
//Fieldset = 3
Tab = 1
}
}