Alpha for rgba() is from 0.0 to 1.0, not 0 to 255.
authorMichael Jumper <zhangmaike@users.sourceforge.net>
Tue, 9 Aug 2011 23:08:18 +0000 (16:08 -0700)
committerMichael Jumper <zhangmaike@users.sourceforge.net>
Tue, 9 Aug 2011 23:08:18 +0000 (16:08 -0700)
src/main/resources/layer.js

index 64ccd03..eb0ba7e 100644 (file)
@@ -405,7 +405,7 @@ Guacamole.Layer = function(width, height) {
         scheduleTask(function() {
             if (layer.autosize != 0) fitRect(x, y, w, h);
             displayContext.fillStyle = "rgba("
-                        + r + "," + g + "," + b + "," + a + ")";
+                        + r + "," + g + "," + b + "," + a / 255 + ")";
             displayContext.fillRect(x, y, w, h);
         });
     };