From dfba97685a014426d3fb47ecdb33cc9be95843a9 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Fri, 8 Jun 2018 15:15:47 -0700 Subject: [PATCH] Fix minor formatting issues --- Utilities.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Utilities.cs b/Utilities.cs index 2896783c..7e58e149 100644 --- a/Utilities.cs +++ b/Utilities.cs @@ -563,7 +563,7 @@ namespace DICUI List types = GetValidDiscTypes(system); // If we have a single type, we don't want to postfix the system name with it - if (types.Count == 0) + if (types.Count == 1) { mapping.Add(new Tuple(KnownSystemToString(system), system, types[0])); } @@ -572,7 +572,7 @@ namespace DICUI { foreach (DiscType type in types) { - mapping.Add(new Tuple(KnownSystemToString(system) + "(" + DiscTypeToString(type) + ")", system, type)); + mapping.Add(new Tuple(KnownSystemToString(system) + " (" + DiscTypeToString(type) + ")", system, type)); } } }