ADD, SUBTRACT, MULTIPLY hotkeys

Moderator: Rathinagiri

Post Reply
KDJ
Posts: 243
Joined: Mon Sep 05, 2016 3:04 am
Location: Poland

ADD, SUBTRACT, MULTIPLY hotkeys

Post 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.
User avatar
Pablo César
Posts: 4059
Joined: Wed Sep 08, 2010 1:18 pm
Location: Curitiba - Brasil

ADD, SUBTRACT, MULTIPLY hotkeys

Post 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 ?
HMGing a better world
"Matter tells space how to curve, space tells matter how to move."
Albert Einstein
User avatar
srvet_claudio
Posts: 2193
Joined: Thu Feb 25, 2010 8:43 pm
Location: Uruguay
Contact:

Re: ADD, SUBTRACT, MULTIPLY hotkeys

Post by srvet_claudio »

Kevin fixed many issue of i_keybd.ch
Best regards.
Dr. Claudio Soto
(from Uruguay)
http://srvet.blogspot.com
User avatar
Pablo César
Posts: 4059
Joined: Wed Sep 08, 2010 1:18 pm
Location: Curitiba - Brasil

ADD, SUBTRACT, MULTIPLY hotkeys

Post 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
HMGing a better world
"Matter tells space how to curve, space tells matter how to move."
Albert Einstein
Post Reply