diff --git a/reference/HotKey/main.cpp b/reference/HotKey/main.cpp index a5464ca59..402fee3ca 100644 --- a/reference/HotKey/main.cpp +++ b/reference/HotKey/main.cpp @@ -15,7 +15,7 @@ void HotKey2() GUI_APP_MAIN { TopWindow win; - int id = Ctrl::RegisterSystemHotKey(K_ALT|K_CTRL|K_F11, callback(HotKey1)); + int id = Ctrl::RegisterSystemHotKey(K_CTRL|K_F1, callback(HotKey1)); Ctrl::RegisterSystemHotKey(K_ALT|K_CTRL|K_SHIFT|K_A, callback(HotKey2)); win.Run(); Ctrl::UnregisterSystemHotKey(id);