mirror of
https://github.com/Quill-OS/quill.git
synced 2024-10-31 21:33:22 -07:00
Small fixes
This commit is contained in:
parent
4eaaeb33b8
commit
ba2eefd2d1
2 changed files with 4 additions and 24 deletions
|
@ -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);
|
||||||
|
@ -97,7 +82,7 @@ powerDaemonSettings::powerDaemonSettings(QWidget *parent) :
|
||||||
cinematicBrightnessInt = cinematicBrightnessMs.toInt();
|
cinematicBrightnessInt = cinematicBrightnessMs.toInt();
|
||||||
convertCinematicInt();
|
convertCinematicInt();
|
||||||
|
|
||||||
// 2- cpuGovernor
|
// 2 - cpuGovernor
|
||||||
QString cpuGovernor = readFile("/mnt/onboard/.adds/inkbox/.config/20-sleep_daemon/2-cpuGovernor");
|
QString cpuGovernor = readFile("/mnt/onboard/.adds/inkbox/.config/20-sleep_daemon/2-cpuGovernor");
|
||||||
|
|
||||||
QStringList cpuGovernorList = QStringList{cpuGovernor};
|
QStringList cpuGovernorList = QStringList{cpuGovernor};
|
||||||
|
@ -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);
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue