From 675486fd7e5f4f025e3a1c522681e3ef2218715c Mon Sep 17 00:00:00 2001 From: Robert Date: Thu, 10 Sep 2020 20:23:10 +0200 Subject: [PATCH] Core - Streamlined public parts of profile creation UI - Started adjusting the VMs for the layer refactor --- .../ProfileEditor/LayerProperties/LayerPropertiesViewModel.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Artemis.UI/Screens/ProfileEditor/LayerProperties/LayerPropertiesViewModel.cs b/src/Artemis.UI/Screens/ProfileEditor/LayerProperties/LayerPropertiesViewModel.cs index 68c462ff1..22467b5ac 100644 --- a/src/Artemis.UI/Screens/ProfileEditor/LayerProperties/LayerPropertiesViewModel.cs +++ b/src/Artemis.UI/Screens/ProfileEditor/LayerProperties/LayerPropertiesViewModel.cs @@ -52,6 +52,8 @@ namespace Artemis.UI.Screens.ProfileEditor.LayerProperties SettingsService = settingsService; EffectsViewModel = _layerPropertyVmFactory.EffectsViewModel(this); + Items.Add(EffectsViewModel); + LayerPropertyGroups = new BindableCollection(); PropertyChanged += HandlePropertyTreeIndexChanged; }