change integer layer field when 'l' is pressed

This commit is contained in:
2025-08-09 08:36:14 +01:00
parent 8715879ceb
commit 6cd2b85d8b
4 changed files with 11 additions and 2 deletions

View File

@@ -58,13 +58,17 @@ struct
key = Input.KEY_S () andalso action = Input.PRESS () andalso mods = 0x002
then
Mailbox.send (mailbox, KEY_CTRL_S)
else if
key = Input.KEY_L () andalso action = Input.PRESS () andalso mods = 0
then
Mailbox.send (mailbox, KEY_L)
else if
(* ctrl-l *)
key = Input.KEY_L () andalso action = Input.PRESS () andalso mods = 0x002
then
Mailbox.send (mailbox, KEY_CTRL_L)
else if
(* ctrl-l *)
(* ctrl-e *)
key = Input.KEY_E () andalso action = Input.PRESS () andalso mods = 0x002
then
Mailbox.send (mailbox, KEY_CTRL_E)