mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-07 05:31:22 +00:00
Fixed error in call to redrawCursor() and layer
This commit is contained in:
@@ -112,7 +112,7 @@ function Layer(width, height) {
|
||||
|
||||
// Draw all pending updates.
|
||||
var update;
|
||||
while ((update = updates[0]).hasHandler()) {
|
||||
while ((update = updates[0]) != null && update.hasHandler()) {
|
||||
update.handle();
|
||||
updates.shift();
|
||||
}
|
||||
|
Reference in New Issue
Block a user