aboutsummaryrefslogtreecommitdiff
path: root/src/settingswidget.cpp
diff options
context:
space:
mode:
authorLibravatar keshavbhatt <keshavnrj@gmail.com>2021-05-03 17:15:44 +0530
committerLibravatar keshavbhatt <keshavnrj@gmail.com>2021-05-03 17:15:44 +0530
commitb89c0289c5846995132dd55fd34f935706263f89 (patch)
treec113b185c371629eb2a6ade76b46030a07e5530c /src/settingswidget.cpp
parent46f7fbd2dec582732990d708baa5c26767e3722c (diff)
downloadwhatsie-b89c0289c5846995132dd55fd34f935706263f89.tar.gz
whatsie-b89c0289c5846995132dd55fd34f935706263f89.zip
increase timeout of automatic theme switcher
Diffstat (limited to 'src/settingswidget.cpp')
-rw-r--r--src/settingswidget.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/settingswidget.cpp b/src/settingswidget.cpp
index 8cd3a84..abec26e 100644
--- a/src/settingswidget.cpp
+++ b/src/settingswidget.cpp
@@ -35,7 +35,7 @@ SettingsWidget::SettingsWidget(QWidget *parent, QString engineCachePath, QString
ui->automaticThemeCheckBox->blockSignals(false);
themeSwitchTimer = new QTimer(this);
- themeSwitchTimer->setInterval(5000);
+ themeSwitchTimer->setInterval(60000); // 1 min
connect(themeSwitchTimer,&QTimer::timeout,[=](){
themeSwitchTimerTimeout();
});