-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix horizontal scroll and extended key codes #4
Conversation
This library includes support for sending horizontal mouse wheel events, but it forgets to send the TsInputFlagMouseHwheel capability to the server when the connection is established. See https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-rdpbcgr/b3bc76ae-9ee5-454f-b197-ede845ca69cc Updates: gravitational/teleport#8742 See also: gravitational/webapps#437
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Bot.
@@ -362,13 +362,13 @@ pub enum InputFlags { | |||
InputFlagFastpathInput = 0x0008, | |||
/// In order to send keyboard scancode | |||
/// We can send directly UNICODE code of char | |||
/// Usefull if we want to send script | |||
/// Useful if we want to send script |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are Rust comments really three ///
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Doc comments, yes. Regular comments no.
This pulls in the fixes from gravitational/rdp-rs#4 Updates #8742 Backport to v8 required.
This pulls in the fixes from gravitational/rdp-rs#4 Updates #8742 Backport to v8 required.
This pulls in the fixes from gravitational/rdp-rs#4 Updates #8742 Backport to v8 required.
This pulls in the fixes from gravitational/rdp-rs#4 Updates #8742 Backport to v8 required.
This pulls in the fixes from gravitational/rdp-rs#4 Updates #8742 Backport to v8 required.
This pulls in the fixes from gravitational/rdp-rs#4 Updates #8742 Backport to v8 required.
This library includes support for sending horizontal mouse wheel events,
but it forgets to send the TsInputFlagMouseHwheel capability to the
server when the connection is established.
See https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-rdpbcgr/b3bc76ae-9ee5-454f-b197-ede845ca69cc
Updates: gravitational/teleport#8742
See also: gravitational/webapps#437