Skip to content

Commit

Permalink
fix: wrong order
Browse files Browse the repository at this point in the history
Log:
  • Loading branch information
Decodetalkers committed Oct 31, 2023
1 parent 31e9345 commit f952b5a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/plugin-power/window/generalmodule.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ static QString get_translate(const QString &type) {
if (type == BALANCE) {
return QObject::tr("Auto adjust CPU operating frequency based on CPU load condition");
}
if (type == PERFORMANCE) {
if (type == BALANCEPERFORMANCE) {
return QObject::tr("Aggressively adjust CPU operating frequency based on CPU load condition");
}
if (type == BALANCEPERFORMANCE) {
if (type == PERFORMANCE) {
return QObject::tr("Be good to imporving performance, but power consumption and heat generation will increase");
}
return QObject::tr("CPU always works under low frequency, will reduce power consumption");
Expand Down

0 comments on commit f952b5a

Please sign in to comment.