From 78fc4630856b7530a28e36a7ef6339b3e07ef173 Mon Sep 17 00:00:00 2001 From: Robert Date: Thu, 24 Dec 2020 20:22:17 +0100 Subject: [PATCH] Layers - Move brush property to the top of the general property group --- .../Models/Profile/LayerGeneralProperties.cs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/Artemis.Core/Models/Profile/LayerGeneralProperties.cs b/src/Artemis.Core/Models/Profile/LayerGeneralProperties.cs index b434ccb2f..98caab37d 100644 --- a/src/Artemis.Core/Models/Profile/LayerGeneralProperties.cs +++ b/src/Artemis.Core/Models/Profile/LayerGeneralProperties.cs @@ -9,6 +9,12 @@ namespace Artemis.Core /// public class LayerGeneralProperties : LayerPropertyGroup { + /// + /// The type of brush to use for this layer + /// + [PropertyDescription(Name = "Brush type", Description = "The type of brush to use for this layer")] + public LayerBrushReferenceLayerProperty BrushReference { get; set; } + /// /// The type of shape to draw in this layer /// @@ -26,13 +32,7 @@ namespace Artemis.Core /// [PropertyDescription(Name = "Transform mode", Description = "How the transformation properties are applied to the layer")] public EnumLayerProperty TransformMode { get; set; } - - /// - /// The type of brush to use for this layer - /// - [PropertyDescription(Name = "Brush type", Description = "The type of brush to use for this layer")] - public LayerBrushReferenceLayerProperty BrushReference { get; set; } - + /// protected override void PopulateDefaults() {