Page 1 of 1

ADD, SUBTRACT, MULTIPLY hotkeys

Posted: Sat Mar 11, 2017 8:50 pm
by KDJ
In i_keybd.ch there are defined the hotkeys: ADD, SUBTRACT, MULTIPLY, ALT+ADD, ALT+SUBTRACT.
But is missing definition for release them.

ADD, SUBTRACT, MULTIPLY hotkeys

Posted: Fri Mar 24, 2017 6:57 pm
by Pablo César
KDJ wrote: Sat Mar 11, 2017 8:50 pm hotkeys: ADD, SUBTRACT, MULTIPLY, ALT+ADD, ALT+SUBTRACT.
But is missing definition for release
You are right Krzysztof and please also considere more this: ALT+MULTIPLY. Thank you for reporting.

Claudio you forgot to confirm these faults.

Following It is missing to define at file i_keybd.ch:

Code: Select all

#xcommand RELEASE KEY ADD OF <parent> ;
=> ;
_ReleaseHotKey ( <"parent"> , 0 , ADD )

#xcommand RELEASE KEY SUBTRACT OF <parent> ;
=> ;
_ReleaseHotKey ( <"parent"> , 0 , SUBTRACT )

#xcommand RELEASE KEY MULTIPLY OF <parent> ;
=> ;
_ReleaseHotKey ( <"parent"> , 0 , MULTIPLY )

#xcommand RELEASE KEY ALT+ADD OF <parent> ;
=> ;
_ReleaseHotKey ( <"parent"> , MOD_ALT , ADD )

#xcommand RELEASE KEY ALT+SUBTRACT OF <parent> ;
=> ;
_ReleaseHotKey ( <"parent"> , MOD_ALT , SUBTRACT )

#xcommand RELEASE KEY ALT+MULTIPLY OF <parent> ;
=> ;
_ReleaseHotKey ( <"parent"> , MOD_ALT , MULTIPLY )
Could you please confirm for next relase or patch, Claudio ?

Re: ADD, SUBTRACT, MULTIPLY hotkeys

Posted: Fri Mar 24, 2017 10:19 pm
by srvet_claudio
Kevin fixed many issue of i_keybd.ch

ADD, SUBTRACT, MULTIPLY hotkeys

Posted: Fri Mar 24, 2017 11:01 pm
by Pablo César
Ohhh yesss. I have just checked, because I just noted right now the Kevin Carmody changes on i_keybd.ch previously you have mentioned.

It is great, many others keys were defined. Will be so useful.

Thank you Claudio for your response and approval. :P