1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2025-12-12 13:28:33 +00:00

Layers - Move brush property to the top of the general property group

This commit is contained in:
Robert 2020-12-24 20:22:17 +01:00
parent 051d981a01
commit 78fc463085

View File

@ -9,6 +9,12 @@ namespace Artemis.Core
/// </summary>
public class LayerGeneralProperties : LayerPropertyGroup
{
/// <summary>
/// The type of brush to use for this layer
/// </summary>
[PropertyDescription(Name = "Brush type", Description = "The type of brush to use for this layer")]
public LayerBrushReferenceLayerProperty BrushReference { get; set; }
/// <summary>
/// The type of shape to draw in this layer
/// </summary>
@ -26,13 +32,7 @@ namespace Artemis.Core
/// </summary>
[PropertyDescription(Name = "Transform mode", Description = "How the transformation properties are applied to the layer")]
public EnumLayerProperty<LayerTransformMode> TransformMode { get; set; }
/// <summary>
/// The type of brush to use for this layer
/// </summary>
[PropertyDescription(Name = "Brush type", Description = "The type of brush to use for this layer")]
public LayerBrushReferenceLayerProperty BrushReference { get; set; }
/// <inheritdoc />
protected override void PopulateDefaults()
{