Commit 5228da630215e406a6d12789a861dcca3b6761a9
1 parent
935b853a43
Exists in
master
and in
2 other branches
딜레이 변경
Showing
5 changed files
with
10 additions
and
10 deletions
Show diff stats
app/gui/oven_control/autocookwindow.cpp
... | ... | @@ -69,11 +69,11 @@ AutoCookWindow::AutoCookWindow(QWidget *parent, Cook cook) : |
69 | 69 | connect(&returnToCurrentStepTimer, SIGNAL(timeout()), SLOT(returnToCurrentStep())); |
70 | 70 | |
71 | 71 | showCurrentHumidityTimer.setSingleShot(true); |
72 | - showCurrentHumidityTimer.setInterval(3000); | |
72 | + showCurrentHumidityTimer.setInterval(1000); | |
73 | 73 | connect(&showCurrentHumidityTimer, SIGNAL(timeout()), SLOT(showCurrentHumidity())); |
74 | 74 | |
75 | 75 | showCurrentTempTimer.setSingleShot(true); |
76 | - showCurrentTempTimer.setInterval(3000); | |
76 | + showCurrentTempTimer.setInterval(1000); | |
77 | 77 | connect(&showCurrentTempTimer, SIGNAL(timeout()), SLOT(showCurrentTemp())); |
78 | 78 | |
79 | 79 | connect(&checkCookTimer, SIGNAL(timeout()), SLOT(checkCook())); | ... | ... |
app/gui/oven_control/cookpanelbutton.cpp
... | ... | @@ -19,7 +19,7 @@ CookPanelButton::CookPanelButton(CookRecord record, QWidget *parent) : |
19 | 19 | connect(button, &QPushButton::pressed, SoundPlayer::playClick); |
20 | 20 | |
21 | 21 | longPressedTimer.setSingleShot(true); |
22 | - longPressedTimer.setInterval(2000); | |
22 | + longPressedTimer.setInterval(3000); | |
23 | 23 | connect(&longPressedTimer, SIGNAL(timeout()), SLOT(emitLongPressed())); |
24 | 24 | } |
25 | 25 | ... | ... |
app/gui/oven_control/cooldownpopup.cpp
... | ... | @@ -39,11 +39,11 @@ CooldownPopup::CooldownPopup(QWidget *parent, Oven *oven) : |
39 | 39 | connect(oven, SIGNAL(changed(Oven*)), SLOT(updateView())); |
40 | 40 | |
41 | 41 | cooldownStartTimer.setSingleShot(true); |
42 | - cooldownStartTimer.setInterval(2000); | |
42 | + cooldownStartTimer.setInterval(3000); | |
43 | 43 | connect(&cooldownStartTimer, SIGNAL(timeout()), SLOT(start())); |
44 | 44 | |
45 | 45 | showCurrentTempTimer.setSingleShot(true); |
46 | - showCurrentTempTimer.setInterval(2000); | |
46 | + showCurrentTempTimer.setInterval(1000); | |
47 | 47 | connect(&showCurrentTempTimer, SIGNAL(timeout()), SLOT(showCurrentTemp())); |
48 | 48 | |
49 | 49 | checkOvenTimer.setInterval(100); | ... | ... |
app/gui/oven_control/manualcookwindow.cpp
... | ... | @@ -114,15 +114,15 @@ ManualCookWindow::ManualCookWindow(QWidget *parent, Define::Mode mode) : |
114 | 114 | connect(ui->interTempSlider, SIGNAL(sliderMoved(int)), this, SLOT(updateView())); |
115 | 115 | |
116 | 116 | startCookingTimer.setSingleShot(true); |
117 | - startCookingTimer.setInterval(2000); | |
117 | + startCookingTimer.setInterval(3000); | |
118 | 118 | connect(&startCookingTimer, SIGNAL(timeout()), SLOT(start())); |
119 | 119 | |
120 | 120 | showCurrentHumidityTimer.setSingleShot(true); |
121 | - showCurrentHumidityTimer.setInterval(2000); | |
121 | + showCurrentHumidityTimer.setInterval(1000); | |
122 | 122 | connect(&showCurrentHumidityTimer, SIGNAL(timeout()), SLOT(showCurrentHumidity())); |
123 | 123 | |
124 | 124 | showCurrentTempTimer.setSingleShot(true); |
125 | - showCurrentTempTimer.setInterval(2000); | |
125 | + showCurrentTempTimer.setInterval(1000); | |
126 | 126 | connect(&showCurrentTempTimer, SIGNAL(timeout()), SLOT(showCurrentTemp())); |
127 | 127 | |
128 | 128 | connect(oven, SIGNAL(changed(Oven*)), this, SLOT(onOvenUpdated(Oven*))); | ... | ... |
app/gui/oven_control/preheatpopup.cpp
... | ... | @@ -17,11 +17,11 @@ PreheatPopup::PreheatPopup(QWidget *parent, Oven *oven) : |
17 | 17 | connect(oven, SIGNAL(changed(Oven*)), SLOT(onOvenChanged())); |
18 | 18 | |
19 | 19 | showCurrentHumidityTimer.setSingleShot(true); |
20 | - showCurrentHumidityTimer.setInterval(3000); | |
20 | + showCurrentHumidityTimer.setInterval(1000); | |
21 | 21 | connect(&showCurrentHumidityTimer, SIGNAL(timeout()), SLOT(showCurrentHumidity())); |
22 | 22 | |
23 | 23 | showCurrentTempTimer.setSingleShot(true); |
24 | - showCurrentTempTimer.setInterval(3000); | |
24 | + showCurrentTempTimer.setInterval(1000); | |
25 | 25 | connect(&showCurrentTempTimer, SIGNAL(timeout()), SLOT(showCurrentTemp())); |
26 | 26 | |
27 | 27 | ui->preheatGauge->setMaximum(oven->temp()); | ... | ... |