--- SqueezeboxG.pm 2004-09-24 03:52:00.000000000 -0700 +++ Slim/Player/SqueezeboxG.pm 2004-09-29 17:39:55.609375000 -0700 @@ -1,6 +1,6 @@ package Slim::Player::SqueezeboxG; -# $Id: SqueezeboxG.pm,v 1.14 2004/09/11 04:27:30 dean Exp $ +# $Id: SqueezeboxG.pm,v 1.15 2004/09/25 00:47:55 kdf Exp $ # SlimServer Copyright (c) 2001-2004 Sean Adams, Slim Devices Inc. # This program is free software; you can redistribute it and/or @@ -389,13 +389,29 @@ sub showBriefly { my $firstLineIfDoubled = shift; my @lines = [$line1,$line2]; - $client->update(@lines); - + my %line = (func => sub {return ($line1,$line2)}); + my $linefunc = $client->lines(); + + $client->lines(\&{$line{func}}); + $client->update(); + if (!$duration) { $duration = 1; } + + Slim::Utils::Timers::setTimer($client,Time::HiRes::time() + $duration,\&showDone,$linefunc) +} - Slim::Utils::Timers::setTimer($client,Time::HiRes::time() + $duration,\&update) +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