From 2dbcf13c097b081fc3e144a88d4bcf2c56623216 Mon Sep 17 00:00:00 2001 From: Jeffrey Crowell Date: Mon, 6 Apr 2026 20:33:27 -0400 Subject: [PATCH] use "Cmd" instead of "Ctrl" for hotkeys on Apple (#239) --- include/dusk/hotkeys.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/dusk/hotkeys.h b/include/dusk/hotkeys.h index c40f35925f..6e98d62521 100644 --- a/include/dusk/hotkeys.h +++ b/include/dusk/hotkeys.h @@ -3,7 +3,11 @@ namespace dusk::hotkeys { +#if __APPLE__ +constexpr const char* DO_RESET = "Cmd+R"; +#else constexpr const char* DO_RESET = "Ctrl+R"; +#endif constexpr const char* TOGGLE_FULLSCREEN = "F11";