Commit 88f8e42ea889ac2bdd541d3611726327400ad9bd
1 parent
285c471213
Exists in
master
and in
2 other branches
수동 요리 중 목표 중심 온도에 도달해도 요리가 끝나지 않는 문제 수정
Showing
1 changed file
with
5 additions
and
0 deletions
Show diff stats
app/gui/oven_control/manualcookwindow.cpp
@@ -110,6 +110,11 @@ void ManualCookWindow::checkTime() | @@ -110,6 +110,11 @@ void ManualCookWindow::checkTime() | ||
110 | 110 | ||
111 | updateLabels(); | 111 | updateLabels(); |
112 | } | 112 | } |
113 | + | ||
114 | + if (oven->interTempEnabled() && oven->currentInterTemp() >= oven->interTemp()) | ||
115 | + { | ||
116 | + oven->stopCooking(); | ||
117 | + } | ||
113 | } | 118 | } |
114 | 119 | ||
115 | void ManualCookWindow::showCurrentHumidity() | 120 | void ManualCookWindow::showCurrentHumidity() |