Commit 18e9a51e5682e1abfb2b9664f3b702bf796bacfa

Authored by 김태훈
1 parent a9841cd3cf
Exists in master and in 2 other branches fhd, fhd-demo

의무 세척 기준 반영

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
app/gui/oven_control/washwarnicon.cpp
@@ -23,7 +23,7 @@ void WashWarnIcon::check() @@ -23,7 +23,7 @@ void WashWarnIcon::check()
23 Define::config_item item = Config::getInstance()->getConfigValue(Define::config_duty_wash); 23 Define::config_item item = Config::getInstance()->getConfigValue(Define::config_duty_wash);
24 if (item.d32 == 0) 24 if (item.d32 == 0)
25 hide(); 25 hide();
26 - else if (DirtyLevel::dirty() > 0 || DirtyLevel::state() > 0) 26 + else if (DirtyLevel::dirty() >= 4 || DirtyLevel::state() >= 4)
27 show(); 27 show();
28 else 28 else
29 hide(); 29 hide();