Repository: incubator-guacamole-server Updated Branches: refs/heads/staging/0.9.12-incubating 3ff832315 -> de9b8d6d2
GUACAMOLE-226: All new layers are fully opaque. Project: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-server/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-server/commit/72284cfc Tree: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-server/tree/72284cfc Diff: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-server/diff/72284cfc Branch: refs/heads/staging/0.9.12-incubating Commit: 72284cfc7c555337cf351cce91d7ff99ef00b952 Parents: a808a6b Author: Michael Jumper <[email protected]> Authored: Wed Mar 1 08:45:12 2017 -0800 Committer: Michael Jumper <[email protected]> Committed: Wed Mar 1 08:45:12 2017 -0800 ---------------------------------------------------------------------- src/common/surface.c | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-guacamole-server/blob/72284cfc/src/common/surface.c ---------------------------------------------------------------------- diff --git a/src/common/surface.c b/src/common/surface.c index d135bb7..712a1e5 100644 --- a/src/common/surface.c +++ b/src/common/surface.c @@ -1211,6 +1211,7 @@ guac_common_surface* guac_common_surface_alloc(guac_client* client, surface->socket = socket; surface->layer = layer; surface->parent = GUAC_DEFAULT_LAYER; + surface->opacity = 0xFF; surface->width = w; surface->height = h;
