Bugzilla – Bug 384
while entering text on the remote, it should behave like a nokia...
Last modified: 2008-12-18 11:54:49 UTC
Chris wrote on the list: It's kind of hard to describe, but an example will show you what I mean. If I wanted to search for a song by the Beach Boys, I'd enter the following - nokia style: 2 2 3 3 2 right arrow 2 2 2 the display says BEA2, not BEAC as I'd expect.
Here's a fix for three related problems 1) sometimes we'd insert a right arrow into the search parameters, we wait 2 seconds instead of the more reasonable 1 second before automatically moving right and 3) we need to reset the "last digit pressed" value when we move right. Index: Slim/Utils/Prefs.pm =============================================================== ==== RCS file: /home/cvs/cvsroot/slim/server/Slim/Utils/Prefs.pm,v retrieving revision 1.70 diff -r1.70 Prefs.pm 97c97 < ,"displaytexttimeout" => 2.0 --- > ,"displaytexttimeout" => 1.0 Index: Slim/Buttons/SearchFor.pm =============================================================== ==== RCS file: /home/cvs/cvsroot/slim/server/Slim/Buttons/SearchFor.pm,v retrieving revision 1.8 diff -r1.8 SearchFor.pm 174c174,175 < if (Slim::Buttons::Common::testSkipNextNumberLetter($client, $digit)) { --- > if (Slim::Buttons::Common::testSkipNextNumberLetter($client, $digit) && > ($client->searchTerm($client->searchCursor) ne Slim::Hardware::VFD:: symbol('rightarrow'))) { 224a226,227 > return if ($client->searchTerm($client->searchCursor) eq Slim::Hardware::VFD:: symbol('rightarrow')); > $client->lastLetterDigit('');
This Slimserver bug was fixed a very long time ago, and is now being marked as Closed. If you're still experiencing this issue, please verify you are running a current version of Slimserver and re-open the bug.
Routine bug db maintenance; removing old versions which cause confusion. I apologize for the inconvenience.