aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2017-04-14 07:26:49 -0400
committerKen Moore <ken@ixsystems.com>2017-04-14 07:26:49 -0400
commit7bb4a12fa1dd452d7924a0874a4f22c09869cb71 (patch)
treedd3cb78dd6e38ffe6539194add783171c7ced479 /src-qt5/core
parentUpdate the pkg-plist to account for all the new icons from the light/dark the... (diff)
downloadlumina-7bb4a12fa1dd452d7924a0874a4f22c09869cb71.tar.gz
lumina-7bb4a12fa1dd452d7924a0874a4f22c09869cb71.tar.bz2
lumina-7bb4a12fa1dd452d7924a0874a4f22c09869cb71.zip
Another few changes to icons and such for Lumina.
Diffstat (limited to 'src-qt5/core')
-rw-r--r--src-qt5/core/libLumina/LuminaXDG.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src-qt5/core/libLumina/LuminaXDG.cpp b/src-qt5/core/libLumina/LuminaXDG.cpp
index db1f5a97..3e31c3fc 100644
--- a/src-qt5/core/libLumina/LuminaXDG.cpp
+++ b/src-qt5/core/libLumina/LuminaXDG.cpp
@@ -791,13 +791,13 @@ QIcon LXDG::findIcon(QString iconName, QString fallback){
//fall << LOS::AppPrefix()+"share/pixmaps"; //always use this as well as a final fallback
QDir::setSearchPaths("icontheme", theme);
- QDir::setSearchPaths("material-design-light", oxy);
+ QDir::setSearchPaths("default", oxy);
QDir::setSearchPaths("fallback", fall);
//qDebug() << "Setting Icon Search Paths:" << "\nicontheme:" << theme << "\nmaterial-design-light:" << oxy << "\nfallback:" << fall;
}
//Find the icon in the search paths
QIcon ico;
- QStringList srch; srch << "icontheme" << "material-design-light" << "fallback";
+ QStringList srch; srch << "icontheme" << "default" << "fallback";
for(int i=0; i<srch.length() && ico.isNull(); i++){
//Look for a svg first
if(QFile::exists(srch[i]+":"+iconName+".svg") ){
bgstack15