Github user dborth commented on a diff in the pull request:
https://github.com/apache/incubator-guacamole-server/pull/83#discussion_r109541109
--- Diff: src/protocols/vnc/display.c ---
@@ -153,6 +153,7 @@ void guac_vnc_copyrect(rfbClient* client, int src_x,
int src_y, int w, int h, in
}
void guac_vnc_set_pixel_format(rfbClient* client, int color_depth) {
+ client->format.trueColour = 1;
--- End diff --
Yes, that's correct. The default in rfbGetClient() in libvncserver which
you're calling is already setting:
client->format.trueColour = TRUE;
This is just overriding that value so that it's 1 instead of -1.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---