Small fixes

This commit is contained in:
Nicolas Mailloux 2022-07-29 20:26:20 -04:00
parent 4eaaeb33b8
commit ba2eefd2d1
2 changed files with 4 additions and 24 deletions

View file

@ -36,21 +36,6 @@ powerDaemonSettings::powerDaemonSettings(QWidget *parent) :
// Experimental features label // Experimental features label
ui->label_2->setStyleSheet("font-weight: bold"); 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 // Icons
ui->CBSDecreaseBtn->setIcon(QIcon(":/resources/minus.png")); ui->CBSDecreaseBtn->setIcon(QIcon(":/resources/minus.png"));
ui->CBSDecreaseBtn->setFixedWidth(80); ui->CBSDecreaseBtn->setFixedWidth(80);
@ -190,8 +175,7 @@ powerDaemonSettings::~powerDaemonSettings()
void powerDaemonSettings::on_CBSIncreaseBtn_clicked() void powerDaemonSettings::on_CBSIncreaseBtn_clicked()
{ {
if(cinematicBrightnessInt < 500) if(cinematicBrightnessInt < 500) {
{
cinematicBrightnessInt = cinematicBrightnessInt + 1; cinematicBrightnessInt = cinematicBrightnessInt + 1;
convertCinematicInt(); convertCinematicInt();
} }
@ -199,8 +183,7 @@ void powerDaemonSettings::on_CBSIncreaseBtn_clicked()
void powerDaemonSettings::on_CBSDecreaseBtn_clicked() void powerDaemonSettings::on_CBSDecreaseBtn_clicked()
{ {
if(cinematicBrightnessInt != 0) if(cinematicBrightnessInt != 0) {
{
cinematicBrightnessInt = cinematicBrightnessInt - 1; cinematicBrightnessInt = cinematicBrightnessInt - 1;
convertCinematicInt(); convertCinematicInt();
} }
@ -381,6 +364,4 @@ void powerDaemonSettings::convertCinematicInt()
// To avoid moving other widgets when the value changes // To avoid moving other widgets when the value changes
text.append("ms"); text.append("ms");
ui->CBSLabel->setText(text); ui->CBSLabel->setText(text);
} }

View file

@ -40,10 +40,9 @@ private:
bool chargerWakeUpBool; bool chargerWakeUpBool;
bool wifiReconnectBool; bool wifiReconnectBool;
bool ledUsageBool; bool ledUsageBool;
int idleSleepInt;
bool customCaseBool; bool customCaseBool;
bool deepSleepBool; bool deepSleepBool;
int idleSleepInt;
int cinematicBrightnessInt; int cinematicBrightnessInt;
}; };
#endif // POWERDAEMONSETTINGS_H #endif // POWERDAEMONSETTINGS_H