Skip to content

Commit 847657f

Browse files
authored
Feature: Improved the separation between multiple shortcuts in the Command Palette (#14124)
1 parent dda657d commit 847657f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Files.App/Data/Commands/HotKey/HotKeyCollection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ namespace Files.App.Data.Commands
2323
public int Length => hotKeys.Length;
2424

2525
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));
26+
public string Label => string.Join(", ", hotKeys.Where(hotKey => hotKey.IsVisible).Select(hotKey => hotKey.Label));
2727

2828
public HotKeyCollection() => hotKeys = ImmutableArray<HotKey>.Empty;
2929
public HotKeyCollection(params HotKey[] hotKeys) => this.hotKeys = Clean(hotKeys);

0 commit comments

Comments
 (0)