fix: use dark humidity icons in dark mode

This commit is contained in:
Noisyfox
2026-07-07 14:58:51 +08:00
parent 2524669139
commit 668654da5f

View File

@@ -42,7 +42,7 @@ static std::string get_humidity_level_img_path(int humidity_percent)
}
if (wxGetApp().dark_mode()) {
return "hum_level" + std::to_string(hum_level) + "_no_num_light";
return "hum_level" + std::to_string(hum_level) + "_no_num_dark";
} else {
return "hum_level" + std::to_string(hum_level) + "_no_num_light";
}