Skip to content

Commit

Permalink
comma instead of plus in human readable shortcut telemetry data
Browse files Browse the repository at this point in the history
  • Loading branch information
jaimecbernardo committed Feb 27, 2024
1 parent 003403a commit b59a3f3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ std::wstring GetShortcutHumanReadableString(Shortcut const & shortcut, LayoutMap
humanReadableShortcut += keyboardMap.GetKeyName(shortcut.actionKey);
if (shortcut.secondKey != NULL)
{
humanReadableShortcut += L" + " + keyboardMap.GetKeyName(shortcut.secondKey);
humanReadableShortcut += L" , " + keyboardMap.GetKeyName(shortcut.secondKey);
}
}
return humanReadableShortcut;
Expand Down

0 comments on commit b59a3f3

Please sign in to comment.