Closed nednoodlehead closed 7 months ago
It seems that the 0.4.0
update broke functionality for my example, adding the pressed and release states.
Not really sure why, it seems like that feature is independent to how events are received...
This is because you don't store GlobalHotkeyManager
and its Drop
implementation gets called before your app even starts so you just need to store it inside Example
struct and it should work fine.
I was hoping to make a pr for an iced example, and I have a working example for version 0.2.4, but when I try to upgrade it into the latest version, it fails to detect inputs. The change log between these versions appears to contain nothing that would affect this.
So below is the working 0.2.4 example:
(Requires
iced = "0.12.1"
&async-std = "1.12"
)