Index: apps/plugin.c
===================================================================
RCS file: /cvsroot/rockbox/apps/plugin.c,v
retrieving revision 1.165
diff -u -u -r1.165 plugin.c
--- apps/plugin.c	28 Mar 2006 16:18:21 -0000	1.165
+++ apps/plugin.c	1 Apr 2006 08:37:39 -0000
@@ -496,6 +496,14 @@
     plugin_size = hdr->end_addr - pluginbuf;
 #endif
 
+     /* Set backlight to be on all the time */
+    static int bls;
+    if (global_settings.backlight_timeout > 0)
+    {
+        bls = global_settings.backlight_timeout;
+        global_settings.backlight_timeout = 1;
+    }
+   
     plugin_loaded = true;
 
 #ifdef HAVE_LCD_BITMAP
@@ -571,6 +579,9 @@
             break;
     }
 
+    /* Set backlight timeout back to user setting */
+    backlight_set_timeout (bls);
+    
     return PLUGIN_OK;
 }
 