We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dda657d commit 847657fCopy full SHA for 847657f
src/Files.App/Data/Commands/HotKey/HotKeyCollection.cs
@@ -23,7 +23,7 @@ namespace Files.App.Data.Commands
23
public int Length => hotKeys.Length;
24
25
public string Code => string.Join(',', hotKeys.Select(hotKey => hotKey.Code));
26
- 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));
27
28
public HotKeyCollection() => hotKeys = ImmutableArray<HotKey>.Empty;
29
public HotKeyCollection(params HotKey[] hotKeys) => this.hotKeys = Clean(hotKeys);
0 commit comments