"viewers iconset:" must not be empty, so revert that change to wpsbuild.pl and make iCatcher specify /.rockbox/icons/viewers.bmp. Thanks to Jens for pointing this out.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16386 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
3716179a24
commit
e7e3172b52
2 changed files with 4 additions and 6 deletions
|
@ -157,7 +157,7 @@ Background Color: FFFFFF
|
|||
Statusbar: on
|
||||
backdrop:
|
||||
iconset:
|
||||
viewers iconset:
|
||||
viewers iconset: /.rockbox/icons/viewers.bmp
|
||||
</wps>
|
||||
|
||||
<rwps>
|
||||
|
|
|
@ -144,10 +144,8 @@ sub copythemeviewericon
|
|||
{
|
||||
#copy the viewer icon specified by the theme
|
||||
|
||||
if ($viewericon ne '') {
|
||||
$viewericon =~ /\/(.*icons\/(.*))/i;
|
||||
`cp $ROOT/icons/$2 $1`;
|
||||
}
|
||||
$viewericon =~ /\/(.*icons\/(.*))/i;
|
||||
`cp $ROOT/icons/$2 $1`;
|
||||
}
|
||||
|
||||
sub copywps
|
||||
|
@ -246,7 +244,7 @@ MOO
|
|||
if(defined($iconset)) {
|
||||
push @out, "iconset: $iconset\n";
|
||||
}
|
||||
if(defined($viewericon)) {
|
||||
if($viewericon) {
|
||||
push @out, "viewers iconset: $viewericon\n";
|
||||
}
|
||||
if($lineselecttextcolor && $main_depth > 2 ) {
|
||||
|
|
Loading…
Reference in a new issue