mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 13:17:41 +00:00
Alpha for rgba() is from 0.0 to 1.0, not 0 to 255.
This commit is contained in:
@@ -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);
|
||||
});
|
||||
};
|
||||
|
Reference in New Issue
Block a user