mirror of
https://github.com/FreeRDP/FreeRDP.git
synced 2025-06-03 00:00:20 +00:00
[server,shadow] force relative mouse disabled
Since we do not implement the required callbacks ensure we do not send the capability for it to connecting clients.
This commit is contained in:
parent
8613613913
commit
3735440166
@ -131,6 +131,11 @@ int main(int argc, char** argv)
|
|||||||
!freerdp_settings_set_bool(settings, FreeRDP_GfxProgressiveV2, TRUE))
|
!freerdp_settings_set_bool(settings, FreeRDP_GfxProgressiveV2, TRUE))
|
||||||
goto fail;
|
goto fail;
|
||||||
|
|
||||||
|
/* TODO: We do not implement relative mouse callbacks, so deactivate it for now */
|
||||||
|
if (!freerdp_settings_set_bool(settings, FreeRDP_MouseUseRelativeMove, FALSE) ||
|
||||||
|
!freerdp_settings_set_bool(settings, FreeRDP_HasRelativeMouseEvent, FALSE))
|
||||||
|
goto fail;
|
||||||
|
|
||||||
if ((status = shadow_server_parse_command_line(server, argc, argv, shadow_args)) < 0)
|
if ((status = shadow_server_parse_command_line(server, argc, argv, shadow_args)) < 0)
|
||||||
{
|
{
|
||||||
shadow_server_command_line_status_print(server, argc, argv, status, shadow_args);
|
shadow_server_command_line_status_print(server, argc, argv, status, shadow_args);
|
||||||
|
Loading…
Reference in New Issue
Block a user