diff --git a/src/Files.App/Data/Commands/HotKey/HotKeyCollection.cs b/src/Files.App/Data/Commands/HotKey/HotKeyCollection.cs index 3efc1827a693..34cbbacf2e96 100644 --- a/src/Files.App/Data/Commands/HotKey/HotKeyCollection.cs +++ b/src/Files.App/Data/Commands/HotKey/HotKeyCollection.cs @@ -23,7 +23,7 @@ namespace Files.App.Data.Commands public int Length => hotKeys.Length; public string Code => string.Join(',', hotKeys.Select(hotKey => hotKey.Code)); - public string Label => string.Join(',', hotKeys.Where(hotKey => hotKey.IsVisible).Select(hotKey => hotKey.Label)); + public string Label => string.Join(", ", hotKeys.Where(hotKey => hotKey.IsVisible).Select(hotKey => hotKey.Label)); public HotKeyCollection() => hotKeys = ImmutableArray.Empty; public HotKeyCollection(params HotKey[] hotKeys) => this.hotKeys = Clean(hotKeys);