Commit 847a14c2ca420853debf262db8346fb5d13e78ad
1 parent
a5dd6a6d65
Exists in
fhd
세척 이어하기 기능 비활성화
- 세척 기능에 문제가 생긴 경우 정상 사용 불가한 문제가 있음
Showing
3 changed files
with
6 additions
and
0 deletions
Show diff stats
app/gui/oven_control/define.h
app/gui/oven_control/mainwindow.cpp
app/gui/oven_control/washwindow.cpp
... | ... | @@ -62,6 +62,7 @@ WashWindow::WashWindow(QWidget *parent) : |
62 | 62 | setFocus(); |
63 | 63 | |
64 | 64 | OvenStatistics *os = OvenStatistics::getInstance(); |
65 | +#if ENABLE_WASH_RESUMING | |
65 | 66 | if (os->loadWashState()) |
66 | 67 | { |
67 | 68 | // Start Cleaning Steam Generator |
... | ... | @@ -87,6 +88,7 @@ WashWindow::WashWindow(QWidget *parent) : |
87 | 88 | |
88 | 89 | ui->upperStack->setCurrentIndex(1); |
89 | 90 | } |
91 | +#endif | |
90 | 92 | |
91 | 93 | connect(os, SIGNAL(stopClean()), SLOT(stop())); |
92 | 94 | } | ... | ... |