1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-05-12 15:29:43 -04:00

doctor: fix icon theme env variable

This commit is contained in:
LuckShiba
2026-01-03 18:50:38 -03:00
parent 85a7961e74
commit 002039bd3f
+1 -1
View File
@@ -180,7 +180,7 @@ func checkSystemInfo() []checkResult {
func checkEnvironmentVars() []checkResult {
var results []checkResult
results = append(results, checkEnvVar("QT_QPA_PLATFORMTHEME")...)
results = append(results, checkEnvVar("QT_ICON_THEME")...)
results = append(results, checkEnvVar("QS_ICON_THEME")...)
return results
}