From 72284cfc7c555337cf351cce91d7ff99ef00b952 Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Wed, 1 Mar 2017 08:45:12 -0800 Subject: [PATCH] GUACAMOLE-226: All new layers are fully opaque. --- src/common/surface.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/common/surface.c b/src/common/surface.c index d135bb73..712a1e50 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;