1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-01-24 21:42:51 -05: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

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
}