Index: Slim/Player/SqueezeboxG.pm =================================================================== RCS file: /home/cvs/cvsroot/slim/server/Slim/Player/SqueezeboxG.pm,v retrieving revision 1.15 diff -u -p -B -r1.15 SqueezeboxG.pm --- Slim/Player/SqueezeboxG.pm 25 Sep 2004 00:47:55 -0000 1.15 +++ Slim/Player/SqueezeboxG.pm 3 Oct 2004 05:57:26 -0000 @@ -389,13 +389,31 @@ sub showBriefly { my $firstLineIfDoubled = shift; my @lines = [$line1,$line2]; - $client->update(@lines); + my %line = (func => sub {return ($line1,$line2)}); + my $linefunc = $client->lines(); if (!$duration) { $duration = 1; } - Slim::Utils::Timers::setTimer($client,Time::HiRes::time() + $duration,\&update) + if ($duration > 1) { + $client->lines(\&{$line{func}}); + $client->update(); + + Slim::Utils::Timers::setTimer($client,Time::HiRes::time() + $duration,\&showDone,$linefunc) + } else { + $client->update(@lines); + } +} + +sub showDone { + my $client = shift; + my $linefunc = shift; + + if (defined $linefunc && &$linefunc($client) ne "") { + $client->lines($linefunc); + } + $client->update(); } # push the old screen off the left side