From ba2eefd2d17fe8965381505283b82d8af60edf03 Mon Sep 17 00:00:00 2001 From: Nicolas Mailloux Date: Fri, 29 Jul 2022 20:26:20 -0400 Subject: [PATCH] Small fixes --- src/settings/powerdaemonsettings.cpp | 25 +++---------------------- src/settings/powerdaemonsettings.h | 3 +-- 2 files changed, 4 insertions(+), 24 deletions(-) diff --git a/src/settings/powerdaemonsettings.cpp b/src/settings/powerdaemonsettings.cpp index d8a1965..dae81c7 100644 --- a/src/settings/powerdaemonsettings.cpp +++ b/src/settings/powerdaemonsettings.cpp @@ -36,21 +36,6 @@ powerDaemonSettings::powerDaemonSettings(QWidget *parent) : // Experimental features label ui->label_2->setStyleSheet("font-weight: bold"); - /* - if(global::deviceID == "n306") - { - ui->wifiReconnectBtn->setStyleSheet("QCheckBox::indicator { width:50px; height: 50px; }"); - ui->ledUsageBtn->setStyleSheet("QCheckBox::indicator { width:50px; height: 50px; }"); - ui->deepSleepBtn->setStyleSheet("QCheckBox::indicator { width:50px; height: 50px; }"); - ui->hWhenChargerSleepBtn->setStyleSheet("QCheckBox::indicator { width:50px; height: 50px; }"); - ui->hChargerWakeUpBtn->setStyleSheet("QCheckBox::indicator { width:50px; height: 50px; }"); - ui->hCustomCaseBtn->setStyleSheet("QCheckBox::indicator { width:50px; height: 50px; }"); - ui->wifiReconnectBtn->setStyleSheet("QCheckBox::indicator { width:50px; height: 50px; }"); - ui->wifiReconnectBtn->setStyleSheet("QCheckBox::indicator { width:50px; height: 50px; }"); - } - */ - - // Icons ui->CBSDecreaseBtn->setIcon(QIcon(":/resources/minus.png")); ui->CBSDecreaseBtn->setFixedWidth(80); @@ -97,7 +82,7 @@ powerDaemonSettings::powerDaemonSettings(QWidget *parent) : cinematicBrightnessInt = cinematicBrightnessMs.toInt(); convertCinematicInt(); - // 2- cpuGovernor + // 2 - cpuGovernor QString cpuGovernor = readFile("/mnt/onboard/.adds/inkbox/.config/20-sleep_daemon/2-cpuGovernor"); QStringList cpuGovernorList = QStringList{cpuGovernor}; @@ -190,8 +175,7 @@ powerDaemonSettings::~powerDaemonSettings() void powerDaemonSettings::on_CBSIncreaseBtn_clicked() { - if(cinematicBrightnessInt < 500) - { + if(cinematicBrightnessInt < 500) { cinematicBrightnessInt = cinematicBrightnessInt + 1; convertCinematicInt(); } @@ -199,8 +183,7 @@ void powerDaemonSettings::on_CBSIncreaseBtn_clicked() void powerDaemonSettings::on_CBSDecreaseBtn_clicked() { - if(cinematicBrightnessInt != 0) - { + if(cinematicBrightnessInt != 0) { cinematicBrightnessInt = cinematicBrightnessInt - 1; convertCinematicInt(); } @@ -381,6 +364,4 @@ void powerDaemonSettings::convertCinematicInt() // To avoid moving other widgets when the value changes text.append("ms"); ui->CBSLabel->setText(text); - - } diff --git a/src/settings/powerdaemonsettings.h b/src/settings/powerdaemonsettings.h index 3ece2a2..e69e054 100644 --- a/src/settings/powerdaemonsettings.h +++ b/src/settings/powerdaemonsettings.h @@ -40,10 +40,9 @@ private: bool chargerWakeUpBool; bool wifiReconnectBool; bool ledUsageBool; - int idleSleepInt; bool customCaseBool; bool deepSleepBool; + int idleSleepInt; int cinematicBrightnessInt; }; - #endif // POWERDAEMONSETTINGS_H