Skycoder42 / QHotkey

A global shortcut/hotkey for Desktop Qt-Applications
BSD 3-Clause "New" or "Revised" License
548 stars 161 forks source link

About QKeySequence #68

Closed wy-luke closed 2 years ago

wy-luke commented 2 years ago

Great repo, thanks!

Only single key/modifier combinations are possible. If using QKeySequence, only the first key+modifier of the sequence will be used.

Is there any chance that QKeySequence would be supported? I really need this function.

Thanks!

Shatur commented 2 years ago

It is supported. You jut can't user any sequence, some of them can't be mapped globally due to os limitations.

wy-luke commented 2 years ago

It is supported. You jut can't user any sequence, some of them can't be mapped globally due to os limitations.

Sorry, what I mean is multi-key combinations, like Ctrl + K, Ctrl + D ?

I tried Ctrl + X + C , only Ctrl + X works.

Shatur commented 2 years ago

Yes, you can't map Ctrl + X + C, it's a system limitation.

wy-luke commented 2 years ago

Yes, you can't map Ctrl + X + C, it's a system limitation.

Ok, I get it!

Thanks a lot! 🦾