From 6dc51fb62b13b5931800851a3680508a13b1403f Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Wed, 12 Apr 2017 16:07:11 -0400 Subject: Turn on the new icon theme for Lumina, and use it by default as the fallback icon set (no longer rely on the "oxygen" icon set). --- src-qt5/core/libLumina/LuminaXDG.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src-qt5/core/libLumina') diff --git a/src-qt5/core/libLumina/LuminaXDG.cpp b/src-qt5/core/libLumina/LuminaXDG.cpp index d17cc330..3694916b 100644 --- a/src-qt5/core/libLumina/LuminaXDG.cpp +++ b/src-qt5/core/libLumina/LuminaXDG.cpp @@ -764,12 +764,12 @@ QIcon LXDG::findIcon(QString iconName, QString fallback){ //Get the currently-set theme QString cTheme = QIcon::themeName(); if(cTheme.isEmpty()){ - QIcon::setThemeName("oxygen"); - cTheme = "oxygen"; + QIcon::setThemeName("material-design-light"); + cTheme = "material-design-light"; } //Make sure the current search paths correspond to this theme if( QDir::searchPaths("icontheme").filter("/"+cTheme+"/").isEmpty() ){ - //Need to reset search paths: setup the "icontheme" "oxygen" and "fallback" sets + //Need to reset search paths: setup the "icontheme" "material-design-light" and "fallback" sets // - Get all the base icon directories QStringList paths; paths << QDir::homePath()+"/.icons/"; //ordered by priority - local user dirs first @@ -782,18 +782,18 @@ QIcon LXDG::findIcon(QString iconName, QString fallback){ QStringList theme, oxy, fall; for(int i=0; i