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 b6d8b1bcb6
commit d3142f779b
+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";