SpikeHD
SpikeHD
Should be fixed as of 2e379cace5ba24c4a43ea9432c14865016bb7ef9, you are welcome to try an Actions build or just wait for the next release 👍
The global PTT is handled by the `device_query` crate, not Tauri, so this wouldn't be a Tauri issue
Last time I tried it worked fine for me too, unsure what the problem is (Windows 11 bug? I've only tested on 10)
Yea on W10 it works fine in both instances, so I'm really not sure ¯\\\_(ツ)_/¯
I like to hope this was fixed in the recent keybinds revamp of v5, let me know if it's still busted
Double check that custom keybinds are enabled before testing global PTT specifically, it's not really clear but global PTT will not work without that enabled
The crate used for backend key detection, `device_query`, [doesn't detect ScrollLock](https://docs.rs/device_query/latest/device_query/keymap/enum.Keycode.html) apparently (you can Ctrl+F to look for all the different keys on that page). I'd like to try a...
A bit of digging tells me that a different input crate, `inputbot`, [supports ScrollLock](https://docs.rs/inputbot/0.6.0/inputbot/enum.KeybdKey.html#variant.ScrollLockKey) (and others), so I might make the move there, but switching input libraries requires a pretty...
Yea I had thought (at that time) that it was implemented properly, but it's still behind the flag even today. Nothing I can do til it's compiled in by default
In theory, once it's implemented, it'll be a feature that defaults to being enabled (just like all other major browsers ever), so Dorion shouldn't need to do anything special. If...