diff --git a/fluent/src/desktopMain/kotlin/com/konyaco/fluent/component/ContextMenu.desktop.kt b/fluent/src/desktopMain/kotlin/com/konyaco/fluent/component/ContextMenu.desktop.kt index 9479f95d..7a1b2f6a 100644 --- a/fluent/src/desktopMain/kotlin/com/konyaco/fluent/component/ContextMenu.desktop.kt +++ b/fluent/src/desktopMain/kotlin/com/konyaco/fluent/component/ContextMenu.desktop.kt @@ -104,13 +104,13 @@ internal object FluentContextMenuRepresentation : ContextMenuRepresentation { } } else { if (keyData.isAltPressed) { - append("⌥") + append("⌥ ") } if (keyData.isCtrlPressed) { - append("⌘") + append("⌘ ") } if (keyData.isShiftPressed) { - append("⇧") + append("⇧ ") } } append(keyData.key.toString().removePrefix("Key: "))