As I don't think there are many solutions to this, I'll just try to
adapt the plugin code to remove the passback call and replace it with
the default behavior... 

Instead of:


Code:
--------------------
    
  my %choiceMapping = (
  'arrow_left' => 'exit_left',
  'arrow_right' => 'exit_right',
        'knob_push' => 'exit_right',
        'play' => 'play',
  'add' => 'add',
  
  -*'search' => 'passback',*-
  -*'stop' => 'passback',*-
  -*'pause' => 'passback',*- 
  
        'favorites.hold' => 'favorites_add',
        'preset_1.hold' => 'favorites_add1',
        'preset_2.hold' => 'favorites_add2',
        'preset_3.hold' => 'favorites_add3',
        'preset_4.hold' => 'favorites_add4',
        'preset_5.hold' => 'favorites_add5',
        'preset_6.hold' => 'favorites_add6',
  );
  
--------------------


I'll just use:


Code:
--------------------
    
  my %choiceMapping = (
  'arrow_left' => 'exit_left',
  'arrow_right' => 'exit_right',
        'knob_push' => 'exit_right',
        'play' => 'play',
  'add' => 'add',
  
  -*'search' => 'globalsearch',*-
  -*'stop' => 'stop',*-
  -*'pause' => 'pause',*-
  
        'favorites.hold' => 'favorites_add',
        'preset_1.hold' => 'favorites_add1',
        'preset_2.hold' => 'favorites_add2',
        'preset_3.hold' => 'favorites_add3',
        'preset_4.hold' => 'favorites_add4',
        'preset_5.hold' => 'favorites_add5',
        'preset_6.hold' => 'favorites_add6',
  );
  
--------------------


I don't know if there are any side effects, but if it stops crashing
that is good enough for me...



http://www.last.fm/user/amatala
------------------------------------------------------------------------
amatala's Profile: http://forums.slimdevices.com/member.php?userid=15972
View this thread: http://forums.slimdevices.com/showthread.php?t=30908

_______________________________________________
beta mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/beta

Reply via email to