From 92f806439e274028a5dec73cd7d4323d5edc2900 Mon Sep 17 00:00:00 2001 From: Vordenburg <114301317+Vordenburg@users.noreply.github.com> Date: Fri, 23 Dec 2022 14:51:19 -0500 Subject: [PATCH] Order decals in the placer window for mappers. (#13153) --- Content.Client/Decals/UI/DecalPlacerWindow.xaml.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Client/Decals/UI/DecalPlacerWindow.xaml.cs b/Content.Client/Decals/UI/DecalPlacerWindow.xaml.cs index 51f48e6927..78e0725d9f 100644 --- a/Content.Client/Decals/UI/DecalPlacerWindow.xaml.cs +++ b/Content.Client/Decals/UI/DecalPlacerWindow.xaml.cs @@ -20,7 +20,7 @@ public sealed partial class DecalPlacerWindow : DefaultWindow private PaletteColorPicker? _picker; - private Dictionary? _decals; + private SortedDictionary? _decals; private string? _selected; private Color _color = Color.White; private bool _useColor; @@ -170,7 +170,7 @@ public sealed partial class DecalPlacerWindow : DefaultWindow public void Populate(IEnumerable prototypes) { - _decals = new Dictionary(); + _decals = new SortedDictionary(); foreach (var decalPrototype in prototypes) { if (decalPrototype.ShowMenu)