bbennett-ks commented on code in PR #642:
URL: https://github.com/apache/guacamole-server/pull/642#discussion_r2922086409
##########
src/protocols/rdp/keyboard.c:
##########
@@ -643,6 +643,11 @@ void guac_rdp_keyboard_update_modifiers(guac_rdp_keyboard*
keyboard,
int guac_rdp_keyboard_update_keysym(guac_rdp_keyboard* keyboard,
int keysym, int pressed, guac_rdp_key_source source) {
+ /* Map LF to CR: LF has no RDP equivalent so it would fall through to
+ * UnicodeKeyboardEvent() which maps LF to 'J'. */
+ if (keysym == 0xFF0A)
+ keysym = 0xFF0D;
Review Comment:
Done!
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]