From d9024dd1ed28a0874174c9050ba2112e6e8aa0d5 Mon Sep 17 00:00:00 2001 From: Ralf Ertzinger Date: Tue, 30 Apr 2013 19:19:54 +0200 Subject: [PATCH] libvideosite: send "default" to remote color API for default colors instead of undef --- libvideosite.pm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libvideosite.pm b/libvideosite.pm index ace6f81..12fa603 100644 --- a/libvideosite.pm +++ b/libvideosite.pm @@ -183,6 +183,9 @@ sub _recursive_hash_walk { sub _colorpair { my ($fg, $bg) = @_; + $fg = defined($fg)?$fg:'default'; + $bg = defined($bg)?$bg:'default'; + return $remote_api->{color}->($fg, $bg); } -- 1.8.3.1