From 5228da630215e406a6d12789a861dcca3b6761a9 Mon Sep 17 00:00:00 2001 From: victor Date: Mon, 12 Jun 2017 15:04:34 +0900 Subject: [PATCH] =?UTF-8?q?=EB=94=9C=EB=A0=88=EC=9D=B4=20=EB=B3=80?= =?UTF-8?q?=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/gui/oven_control/autocookwindow.cpp | 4 ++-- app/gui/oven_control/cookpanelbutton.cpp | 2 +- app/gui/oven_control/cooldownpopup.cpp | 4 ++-- app/gui/oven_control/manualcookwindow.cpp | 6 +++--- app/gui/oven_control/preheatpopup.cpp | 4 ++-- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/app/gui/oven_control/autocookwindow.cpp b/app/gui/oven_control/autocookwindow.cpp index 05e4555..82d9aa5 100644 --- a/app/gui/oven_control/autocookwindow.cpp +++ b/app/gui/oven_control/autocookwindow.cpp @@ -69,11 +69,11 @@ AutoCookWindow::AutoCookWindow(QWidget *parent, Cook cook) : connect(&returnToCurrentStepTimer, SIGNAL(timeout()), SLOT(returnToCurrentStep())); showCurrentHumidityTimer.setSingleShot(true); - showCurrentHumidityTimer.setInterval(3000); + showCurrentHumidityTimer.setInterval(1000); connect(&showCurrentHumidityTimer, SIGNAL(timeout()), SLOT(showCurrentHumidity())); showCurrentTempTimer.setSingleShot(true); - showCurrentTempTimer.setInterval(3000); + showCurrentTempTimer.setInterval(1000); connect(&showCurrentTempTimer, SIGNAL(timeout()), SLOT(showCurrentTemp())); connect(&checkCookTimer, SIGNAL(timeout()), SLOT(checkCook())); diff --git a/app/gui/oven_control/cookpanelbutton.cpp b/app/gui/oven_control/cookpanelbutton.cpp index e01dc11..6f2cadd 100644 --- a/app/gui/oven_control/cookpanelbutton.cpp +++ b/app/gui/oven_control/cookpanelbutton.cpp @@ -19,7 +19,7 @@ CookPanelButton::CookPanelButton(CookRecord record, QWidget *parent) : connect(button, &QPushButton::pressed, SoundPlayer::playClick); longPressedTimer.setSingleShot(true); - longPressedTimer.setInterval(2000); + longPressedTimer.setInterval(3000); connect(&longPressedTimer, SIGNAL(timeout()), SLOT(emitLongPressed())); } diff --git a/app/gui/oven_control/cooldownpopup.cpp b/app/gui/oven_control/cooldownpopup.cpp index 779d3b8..3ef86a1 100644 --- a/app/gui/oven_control/cooldownpopup.cpp +++ b/app/gui/oven_control/cooldownpopup.cpp @@ -39,11 +39,11 @@ CooldownPopup::CooldownPopup(QWidget *parent, Oven *oven) : connect(oven, SIGNAL(changed(Oven*)), SLOT(updateView())); cooldownStartTimer.setSingleShot(true); - cooldownStartTimer.setInterval(2000); + cooldownStartTimer.setInterval(3000); connect(&cooldownStartTimer, SIGNAL(timeout()), SLOT(start())); showCurrentTempTimer.setSingleShot(true); - showCurrentTempTimer.setInterval(2000); + showCurrentTempTimer.setInterval(1000); connect(&showCurrentTempTimer, SIGNAL(timeout()), SLOT(showCurrentTemp())); checkOvenTimer.setInterval(100); diff --git a/app/gui/oven_control/manualcookwindow.cpp b/app/gui/oven_control/manualcookwindow.cpp index b77862d..8600482 100644 --- a/app/gui/oven_control/manualcookwindow.cpp +++ b/app/gui/oven_control/manualcookwindow.cpp @@ -114,15 +114,15 @@ ManualCookWindow::ManualCookWindow(QWidget *parent, Define::Mode mode) : connect(ui->interTempSlider, SIGNAL(sliderMoved(int)), this, SLOT(updateView())); startCookingTimer.setSingleShot(true); - startCookingTimer.setInterval(2000); + startCookingTimer.setInterval(3000); connect(&startCookingTimer, SIGNAL(timeout()), SLOT(start())); showCurrentHumidityTimer.setSingleShot(true); - showCurrentHumidityTimer.setInterval(2000); + showCurrentHumidityTimer.setInterval(1000); connect(&showCurrentHumidityTimer, SIGNAL(timeout()), SLOT(showCurrentHumidity())); showCurrentTempTimer.setSingleShot(true); - showCurrentTempTimer.setInterval(2000); + showCurrentTempTimer.setInterval(1000); connect(&showCurrentTempTimer, SIGNAL(timeout()), SLOT(showCurrentTemp())); connect(oven, SIGNAL(changed(Oven*)), this, SLOT(onOvenUpdated(Oven*))); diff --git a/app/gui/oven_control/preheatpopup.cpp b/app/gui/oven_control/preheatpopup.cpp index 8865cfc..0b84759 100644 --- a/app/gui/oven_control/preheatpopup.cpp +++ b/app/gui/oven_control/preheatpopup.cpp @@ -17,11 +17,11 @@ PreheatPopup::PreheatPopup(QWidget *parent, Oven *oven) : connect(oven, SIGNAL(changed(Oven*)), SLOT(onOvenChanged())); showCurrentHumidityTimer.setSingleShot(true); - showCurrentHumidityTimer.setInterval(3000); + showCurrentHumidityTimer.setInterval(1000); connect(&showCurrentHumidityTimer, SIGNAL(timeout()), SLOT(showCurrentHumidity())); showCurrentTempTimer.setSingleShot(true); - showCurrentTempTimer.setInterval(3000); + showCurrentTempTimer.setInterval(1000); connect(&showCurrentTempTimer, SIGNAL(timeout()), SLOT(showCurrentTemp())); ui->preheatGauge->setMaximum(oven->temp()); -- 2.1.4