mirror of
https://github.com/gwenhael-le-moine/sway-patched-tray-menu.git
synced 2024-12-27 21:58:16 +01:00
swaylock: Interpret XKB_KEY_BackSpace as a deletion instead of a normal key.
This commit is contained in:
parent
fb4fdf5336
commit
956ca66d2c
1 changed files with 8 additions and 0 deletions
|
@ -108,6 +108,14 @@ void notify_key(enum wl_keyboard_key_state state, xkb_keysym_t sym, uint32_t cod
|
|||
password = malloc(password_size);
|
||||
password[0] = '\0';
|
||||
break;
|
||||
case XKB_KEY_BackSpace:
|
||||
{
|
||||
int i = strlen(password);
|
||||
if (i > 0) {
|
||||
password[i - 1] = '\0';
|
||||
}
|
||||
break;
|
||||
}
|
||||
default:
|
||||
{
|
||||
int i = strlen(password);
|
||||
|
|
Loading…
Reference in a new issue