Skip to content

Commit

Permalink
release only keys from the trigger, not all pressed keys
Browse files Browse the repository at this point in the history
  • Loading branch information
medzernik committed Feb 7, 2023
1 parent ab432b3 commit 9fbe51e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wooting-macro-backend/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -359,10 +359,10 @@ fn check_macro_execution_efficiently(
let channel_clone = channel_sender.clone();
let macro_clone = macros.clone();
let channel_clone2 = channel_sender.clone();
let pressed_events2 = pressed_events.clone();
let pressed_data_clone = data.clone();
task::spawn(async move {

lift_keys(pressed_events2, channel_clone2).await;
lift_keys(pressed_data_clone, channel_clone2).await;
});

task::spawn(async move {
Expand Down

0 comments on commit 9fbe51e

Please sign in to comment.