diff --git a/plugins/dde-dock/power/performancemodecontroller.h b/plugins/dde-dock/power/performancemodecontroller.h
index 0b9c8af1d..fea760a01 100644
--- a/plugins/dde-dock/power/performancemodecontroller.h
+++ b/plugins/dde-dock/power/performancemodecontroller.h
@@ -51,15 +51,15 @@ class PerformanceModeController : public QObject, public Dtk::Core::DSingleton
setSync(false);
const QList> powerModeList = {
- QPair(BALANCE, tr("Balanced")),
- QPair(BALANCEPERFORMANCE, tr("Balance Performance")),
QPair(PERFORMANCE, tr("High Performance")),
+ QPair(BALANCEPERFORMANCE, tr("Balance Performance")),
+ QPair(BALANCE, tr("Balanced")),
QPair(POWERSAVE, tr("Power Saver"))
};
const QMappowerModeProperty = {
- {BALANCE, "IsBalanceSupported"},
- {BALANCEPERFORMANCE, "IsBalancePerformanceSupported"},
{PERFORMANCE, "IsHighPerformanceSupported"},
+ {BALANCEPERFORMANCE, "IsBalancePerformanceSupported"},
+ {BALANCE, "IsBalanceSupported"},
{POWERSAVE, "IsPowerSaveSupported"}
};