From f055ceeac61b1d566ae6b648cef5475ddd65e15f Mon Sep 17 00:00:00 2001 From: Robert Bieber Date: Thu, 12 Aug 2010 18:40:35 +0000 Subject: [PATCH] Theme Editor: Fixed a bug that prevented ID3 info tags from working correctly in conditionals git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27792 a1c6a512-1295-4272-9138-f99709370657 --- utils/themeeditor/models/parsetreenode.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/utils/themeeditor/models/parsetreenode.cpp b/utils/themeeditor/models/parsetreenode.cpp index 9cc73ce1c7..c7df4a4edb 100644 --- a/utils/themeeditor/models/parsetreenode.cpp +++ b/utils/themeeditor/models/parsetreenode.cpp @@ -1007,13 +1007,6 @@ QVariant ParseTreeNode::evalTag(const RBRenderInfo& info, bool conditional, else child = 1; } - else if(val.type() == QVariant::String) - { - if(val.toString().length() > 0) - child = 0; - else - child = 1; - } else if(element->tag->name[0] == 'i' || element->tag->name[0] == 'I' || element->tag->name[0] == 'f' || element->tag->name[0] == 'F') { @@ -1022,6 +1015,13 @@ QVariant ParseTreeNode::evalTag(const RBRenderInfo& info, bool conditional, else child = 1; } + else if(val.type() == QVariant::String) + { + if(val.toString().length() > 0) + child = 0; + else + child = 1; + } else { child = val.toInt();