diff --git a/theme.cpp b/theme.cpp index b708b0a8b..20f10c797 100644 --- a/theme.cpp +++ b/theme.cpp @@ -721,9 +721,9 @@ bool Theme::findInRectsCache(const QString &image, const QString &element, QRect return true; } - //A single _ means the element is empty and we're asked for the size of + //Name starting by _ means the element is empty and we're asked for the size of //the whole image, so the whole image is never invalid - if (element.count('_') == 1) { + if (element.indexOf('_') <= 0) { return false; }