use "Cmd" instead of "Ctrl" for hotkeys on Apple (#239)

This commit is contained in:
Jeffrey Crowell
2026-04-06 20:33:27 -04:00
committed by GitHub
parent 8e4889cc5c
commit 2dbcf13c09
+4
View File
@@ -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";