OldSchoolHack

Registrieren / Anmelden Deutsch

Bugs fixed (27.03.2012)

icon Thema: Bugs fixed (27.03.2012)

Anmeldungsdatum: Aug 2007

Beiträge: 8646

Benutzer-Bewertung:

199 positiv
33 negativ
falls dus noch nicht rausgefunden hast:
CPP Code:
  1. //Hotkey auf Insert:
  2. app->RegisterHotkey(Hotkey(Key::Insert, []()
  3. {
  4. Application::Instance()->Toggle();
  5. }));
  6.  
  7. //Hotkey auf Strg + Insert:
  8. app->RegisterHotkey(Hotkey(Key::Insert, Key::Control, []()
  9. {
  10. Application::Instance()->Toggle();
  11. }));
  12.  
  13. //Hotkey auf Strg + Alt + Insert:
  14. app->RegisterHotkey(Hotkey(Key::Insert, Key::Control | Key::Alt, []()
  15. {
  16. Application::Instance()->Toggle();
  17. }));
und ja, ich weiß, dass die F-Tasten noch nicht in der Key Auflistung drin sind.

greetz KN4CK3R

__________________

Hallo