2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-17 17:36:01 +00:00

98_SVG.pm: fix plot-Editor linetype selector (Forum #32530)

git-svn-id: https://svn.fhem.de/fhem/trunk@7672 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2015-01-23 15:07:00 +00:00
parent 5a647107d5
commit ae34a99533

View File

@ -373,7 +373,7 @@ SVG_PEdit($$$$)
my @lineStyles;
if(SVG_openFile($FW_cssdir,
AttrVal($FW_wname,"stylesheetPrefix",""), "svg_style.css")) {
map { push(@lineStyles,$1) if($_ =~ m/^\.(l[^{ ]*)/) } <FH>; # } vim help
map { push(@lineStyles,$1) if($_ =~ m/^\.SVGplot.(l[^{ ]*)/) } <FH>; # }
close(FH);
}