Rockbox open source high quality audio player as a Music Player Daemon
mpris rockbox mpd libadwaita audio rust zig deno
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

+5 -5
+5 -5
utils/themeeditor/models/parsetreenode.cpp
··· 1007 1007 else 1008 1008 child = 1; 1009 1009 } 1010 - else if(val.type() == QVariant::String) 1010 + else if(element->tag->name[0] == 'i' || element->tag->name[0] == 'I' 1011 + || element->tag->name[0] == 'f' || element->tag->name[0] == 'F') 1011 1012 { 1012 - if(val.toString().length() > 0) 1013 + if(info.device()->data("id3available").toBool()) 1013 1014 child = 0; 1014 1015 else 1015 1016 child = 1; 1016 1017 } 1017 - else if(element->tag->name[0] == 'i' || element->tag->name[0] == 'I' 1018 - || element->tag->name[0] == 'f' || element->tag->name[0] == 'F') 1018 + else if(val.type() == QVariant::String) 1019 1019 { 1020 - if(info.device()->data("id3available").toBool()) 1020 + if(val.toString().length() > 0) 1021 1021 child = 0; 1022 1022 else 1023 1023 child = 1;