mobileshellsettings: Show battery % by default

Fixes: https://invent.kde.org/plasma/plasma-mobile/-/issues/458

See hte issue for details.
This commit is contained in:
Devin Lin 2025-03-20 10:53:16 -04:00
parent 07c86ddcff
commit 4167045642

View file

@ -118,7 +118,7 @@ void MobileShellSettings::setStatusBarScaleFactor(float statusBarScaleFactor)
bool MobileShellSettings::showBatteryPercentage() const bool MobileShellSettings::showBatteryPercentage() const
{ {
auto group = KConfigGroup{m_config, GENERAL_CONFIG_GROUP}; auto group = KConfigGroup{m_config, GENERAL_CONFIG_GROUP};
return group.readEntry("showBatteryPercentage", false); return group.readEntry("showBatteryPercentage", true);
} }
void MobileShellSettings::setShowBatteryPercentage(bool showBatteryPercentage) void MobileShellSettings::setShowBatteryPercentage(bool showBatteryPercentage)