Commit f5daa9571abb0359724f3137861e51e8151128a4
1 parent
f31d412c6f
Exists in
master
and in
2 other branches
INV 열기/닫기 동작 않는 문제 수정
Showing
3 changed files
with
5 additions
and
5 deletions
Show diff stats
app/gui/oven_control/valvetestwindow.cpp
... | ... | @@ -116,12 +116,12 @@ void ValveTestWindow::on_steamPumpButton_clicked() |
116 | 116 | steamPumpOn(); |
117 | 117 | } |
118 | 118 | |
119 | -void ValveTestWindow::on_steamPumpButton_2_clicked() | |
119 | +void ValveTestWindow::on_innerCleanValveButton_clicked() | |
120 | 120 | { |
121 | 121 | if (udp->inv()) |
122 | - steamPumpOff(); | |
122 | + innerCleanValveClose(); | |
123 | 123 | else |
124 | - steamPumpOn(); | |
124 | + innerCleanValveOpen(); | |
125 | 125 | } |
126 | 126 | |
127 | 127 | ... | ... |
app/gui/oven_control/valvetestwindow.h
... | ... | @@ -39,6 +39,7 @@ private slots: |
39 | 39 | |
40 | 40 | void on_steamValveButton_clicked(); |
41 | 41 | void on_steamPumpButton_clicked(); |
42 | + void on_innerCleanValveButton_clicked(); | |
42 | 43 | void on_quenchingValveButton_clicked(); |
43 | 44 | void on_sideValveButton_clicked(); |
44 | 45 | void on_cleanValveButton_clicked(); |
... | ... | @@ -46,7 +47,6 @@ private slots: |
46 | 47 | void on_backButton_clicked(); |
47 | 48 | |
48 | 49 | |
49 | - void on_steamPumpButton_2_clicked(); | |
50 | 50 | |
51 | 51 | private: |
52 | 52 | Ui::ValveTestWindow *ui; | ... | ... |
app/gui/oven_control/valvetestwindow.ui
... | ... | @@ -1194,7 +1194,7 @@ QPushButton:pressed, QPushButton:focus { border-image: url(:/images/button/184_o |
1194 | 1194 | <string>서비스단계(엔지니어모드) > 기능테스트 > 급수밸브</string> |
1195 | 1195 | </property> |
1196 | 1196 | </widget> |
1197 | - <widget class="QPushButton" name="steamPumpButton_2"> | |
1197 | + <widget class="QPushButton" name="innerCleanValveButton"> | |
1198 | 1198 | <property name="geometry"> |
1199 | 1199 | <rect> |
1200 | 1200 | <x>696</x> | ... | ... |