You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed sometimes on a form (just after pressing the alt key) some keys are ignored and I have to restart the program..it's usually when typing L or N and I recently found this in the code after pulling my hair out. Even more frustrating I can only re-create the problem 1/100 tries so it's random. So please tell me what does that code do?? Is it safe to remove / comment it out ??
The text was updated successfully, but these errors were encountered:
As I recall, the point of this array is to define control combos to be suppressed. As in, disable Control F, Control N, Control O, as those functions are not really useful to an app.
Hi,
What does this code do?
this.MODIFIER_BITMAP[this.VK_MENU]: {
GetKeyVK("F"): true,
GetKeyVK("L"): true,
GetKeyVK("N"): true,
GetKeyVK("O"): true,
GetKeyVK("P"): true
},
I noticed sometimes on a form (just after pressing the alt key) some keys are ignored and I have to restart the program..it's usually when typing L or N and I recently found this in the code after pulling my hair out. Even more frustrating I can only re-create the problem 1/100 tries so it's random. So please tell me what does that code do?? Is it safe to remove / comment it out ??
The text was updated successfully, but these errors were encountered: