change integer layer field when 'l' is pressed
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user