corentin-soriano commented on code in PR #560:
URL: https://github.com/apache/guacamole-server/pull/560#discussion_r1966541340
##########
src/protocols/rdp/channels/disp.c:
##########
@@ -204,7 +215,7 @@ void guac_rdp_disp_update_size(guac_rdp_disp* disp,
/* Do NOT send requests unless the size will change */
if (rdp_inst != NULL
- && width == guac_rdp_get_width(rdp_inst)
+ && width * monitors_count == guac_rdp_get_width(rdp_inst)
&& height == guac_rdp_get_height(rdp_inst))
return;
Review Comment:
Yes, all monitors have the same dimensions and are aligned left to right
(the left one is the primary).
I haven't looked to do this better yet but there is no limitation of FreeRDP.
--
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]