treble;674896 Wrote: 
> 
> 
> I am also not sure if the High and Low are correctly abbreviated for
> all lines (103) on the Boom display to HI and LO resp. with the current
> version. I have edited my par file a while back to correct it, I am
> running 5.9.8, so not necessarily the latest version.
> 
Treble,

I fixed my Booms to show the abbreviated HI and LO again by adding the
'i' in the following lines. In SDT version 5.9.8 this section starts on
line 2788.

Cheers,
Don

Code:
--------------------
    
                #Shorten HI/HIGH/LOW/Lo to gain screen real estate on Booms
                if($client->display->isa('Slim::Display::Boom')) {
                        $line1 =~ s/^ Low/LO/i;
                        $line1 =~ s/^Low/LO/i;
                        $line1 =~ s/^High/HI/i;
                        $line1 =~ s/^PREC/PR/i;
                        $line2 =~ s/^ Low/LO/i;
                        $line2 =~ s/^Low/LO/i;
                        $line2 =~ s/^High/HI/i;
                        $line2 =~ s/^PREC/PR/i;
                        $line3 =~ s/^ Low/LO/i;
                        $line3 =~ s/^Low/LO/i;
                        $line3 =~ s/^High/HI/i;
                        $line3 =~ s/^PREC/PR/i;
                        $line3 =~ s/^ LOW/LO/i;
                        $line3 =~ s/^HIGH/HI/i;
                }
--------------------


-- 
BoomX2
------------------------------------------------------------------------
BoomX2's Profile: http://forums.slimdevices.com/member.php?userid=33529
View this thread: http://forums.slimdevices.com/showthread.php?t=14327

_______________________________________________
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins

Reply via email to