forked from len0rd/rockbox
Theme Editor: Fixed cd code generation bug: Tags whose paramlists end in \n will now have a newline inserted after them
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27266 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
2f68e5be59
commit
e472c3975e
1 changed files with 2 additions and 0 deletions
|
@ -210,6 +210,8 @@ QString ParseTreeNode::genCode() const
|
|||
}
|
||||
buffer.append(ARGLISTCLOSESYM);
|
||||
}
|
||||
if(element->tag->params[strlen(element->tag->params) - 1] == '\n')
|
||||
buffer.append('\n');
|
||||
break;
|
||||
|
||||
case TEXT:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue