Skip to content

Commit

Permalink
Fix led state change with tigervnc (#1028)
Browse files Browse the repository at this point in the history
An old work around for addrlink vnc broke the pseudo encoding for
led state change newly implemented in tigervnc 1.9
  • Loading branch information
coolo committed Sep 23, 2018
1 parent 4d8e808 commit 57253b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion consoles/VNC.pm
Expand Up @@ -945,7 +945,7 @@ sub _receive_update {
#bmwqemu::diag "UP $x,$y $w x $h $encoding_type";

# work around buggy addrlink VNC
next if ($w * $h == 0);
next if $encoding_type > 0 && $w * $h == 0;

my $bytes_per_pixel = $self->_bpp / 8;

Expand Down

0 comments on commit 57253b6

Please sign in to comment.