Commit 70fa1653c3385f0f869b33bec98c7919bb35f5bb
1 parent
f9c67430c7
Exists in
master
and in
2 other branches
이름 변경 대기 시간 조절 3초 -> 1초
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
app/gui/oven_control/cookpanelbutton.cpp
@@ -24,7 +24,7 @@ CookPanelButton::CookPanelButton(CookRecord record, QWidget *parent) : | @@ -24,7 +24,7 @@ CookPanelButton::CookPanelButton(CookRecord record, QWidget *parent) : | ||
24 | connect(button, &QPushButton::pressed, SoundPlayer::playClick); | 24 | connect(button, &QPushButton::pressed, SoundPlayer::playClick); |
25 | 25 | ||
26 | longPressedTimer.setSingleShot(true); | 26 | longPressedTimer.setSingleShot(true); |
27 | - longPressedTimer.setInterval(3000); | 27 | + longPressedTimer.setInterval(1000); |
28 | connect(&longPressedTimer, SIGNAL(timeout()), SLOT(emitLongPressed())); | 28 | connect(&longPressedTimer, SIGNAL(timeout()), SLOT(emitLongPressed())); |
29 | } | 29 | } |
30 | 30 |