aboutsummaryrefslogtreecommitdiff
path: root/dev-tools
diff options
context:
space:
mode:
authorZackaryWelch <welch.zackary@gmail.com>2018-04-27 13:43:29 -0400
committerZackaryWelch <welch.zackary@gmail.com>2018-04-27 13:43:29 -0400
commit0793bddd026d7b2e9bfcf6e33ad76674adb89fce (patch)
treec740c7e24827b07db81e1373ffe882f7801f231a /dev-tools
parentMerge branch 'master' of http://github.com/trueos/lumina (diff)
parentMake sure the libreoffice icons are no longer bypassed. Use the ones in the c... (diff)
downloadlumina-0793bddd026d7b2e9bfcf6e33ad76674adb89fce.tar.gz
lumina-0793bddd026d7b2e9bfcf6e33ad76674adb89fce.tar.bz2
lumina-0793bddd026d7b2e9bfcf6e33ad76674adb89fce.zip
Merge branch 'master' of http://github.com/trueos/lumina
Diffstat (limited to 'dev-tools')
-rw-r--r--dev-tools/iconprobe/main.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/dev-tools/iconprobe/main.cpp b/dev-tools/iconprobe/main.cpp
index 06599bf7..be0a1a30 100644
--- a/dev-tools/iconprobe/main.cpp
+++ b/dev-tools/iconprobe/main.cpp
@@ -29,7 +29,7 @@ QStringList themeInherits(QString dir){
QString line = in.readLine();
if(line.startsWith("Inherits=")){
//qDebug() << "Got Inherit Line" << line;
- list = line.section("=",1,-1).split(";");
+ list = line.section("=",1,-1).split(",");
break; //done now
}
}
@@ -72,6 +72,7 @@ int main(int argc, char ** argv)
qDebug() << " - Looking for icon:" << iconfiles[j];
qDebug() << " - Found File:" << findInDir(themepath, iconfiles[j]);
qDebug() << " - Has Theme Icon:" << QIcon::hasThemeIcon(iconfiles[j]);
+ qDebug() << " - Using Theme Cache:" << QFile::exists(themepath+"/icon-theme.cache");
qDebug() << " - Found Icon:" << QIcon::fromTheme(iconfiles[j]).name();
}
qDebug() << " ================";
bgstack15