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
SDL1 will not handle text input automatically, which means that RAIntegration should provide its own event handlers for filling out text boxes, since events cannot be propagated from the client's end.
Keyboard event handlers are processed correctly, because navigation in the memory inspector, for example, works as expected.
While I have not found out anything about this issue in my research, I don't think this can be solved without change to RAIntegration, because the key events "belong" to it, i.e. I cannot intercept events on sub-windows with the client application.
The text was updated successfully, but these errors were encountered:
The message loop must call TranslateMessage to convert the WM_KEYDOWN messages to WM_CHAR messages. It's not something we can really do anything about in our code.
SDL1 will not handle text input automatically, which means that
RAIntegration
should provide its own event handlers for filling out text boxes, since events cannot be propagated from the client's end.Keyboard event handlers are processed correctly, because navigation in the memory inspector, for example, works as expected.
While I have not found out anything about this issue in my research, I don't think this can be solved without change to
RAIntegration
, because the key events "belong" to it, i.e. I cannot intercept events on sub-windows with the client application.The text was updated successfully, but these errors were encountered: