forked from len0rd/rockbox
Theme Editor: Added support for upper-case wps file extensions
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27513 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
e86940c28b
commit
6e238f731f
1 changed files with 1 additions and 1 deletions
|
@ -307,7 +307,7 @@ QGraphicsScene* ParseTreeModel::render(ProjectModel* project,
|
|||
QString extension = decomp.last();
|
||||
if(extension[0] == 'r')
|
||||
remote = true;
|
||||
if(extension.right(3) == "wps")
|
||||
if(extension.right(3).toLower() == "wps")
|
||||
wps = true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue