QxtGlobalShortcut not working on windows

Issue #15 new
Former user created an issue

Certain key combinations aren't working under windows.

the ID used for registering hotkey is generated using xor (nativeMods ^ nativeKey). Shortcuts like "Ctrl+M" (2^77) overrides "O" (0^79) and generates same ID of 79.

Better using ((nativeMods<<8) | nativeKey) for id genration.

Comments (3)

  1. Joseph Newing

    I'm having this same issue right now but it's not capturing anything :s using Qt 4.8.1 MingW on windows.

  2. Log in to comment