mirror of
https://github.com/wessel-novacustom/clevo-keyboard.git
synced 2025-01-18 11:32:50 +01:00
uw: Fix touchpad toggle
Actually only returning notify stop on last key messes up some platforms leading to that next toggle does not register. Should either stop all or none. From now stopping none.
This commit is contained in:
parent
d035d7afb0
commit
eea83c3a37
1 changed files with 1 additions and 1 deletions
|
@ -110,7 +110,7 @@ static int keyboard_notifier_callb(struct notifier_block *nb, unsigned long code
|
|||
if (prevprev_key == 85 && prev_key == 29) {
|
||||
TUXEDO_DEBUG("Touchpad Toggle\n");
|
||||
schedule_work(&uniwill_key_event_work);
|
||||
ret = NOTIFY_STOP;
|
||||
ret = NOTIFY_OK;
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue