mirror of
https://github.com/elenapan/dotfiles.git
synced 2025-12-29 01:05:13 +08:00
Fix Control+Delete combination crashing the lock_screen keygrabber
This commit is contained in:
parent
ab65a23d61
commit
01a710e107
1 changed files with 6 additions and 1 deletions
|
|
@ -196,7 +196,12 @@ local function grab_password()
|
|||
reset()
|
||||
grab_password()
|
||||
end
|
||||
}
|
||||
},
|
||||
-- Fix for Control+Delete crashing the keygrabber
|
||||
{{ 'Control' }, 'Delete', function ()
|
||||
reset()
|
||||
grab_password()
|
||||
end}
|
||||
},
|
||||
keypressed_callback = function(mod, key, cmd)
|
||||
-- Only count single character keys (thus preventing
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue