summaryrefslogtreecommitdiffstats
path: root/BatteryPercent/Tweak.x
blob: b1f7c74fb5bb94201849a93ff1eb890981dee5b2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
%hook _UIBatteryView

-(void)setShowsPercentage:(BOOL)enabled
{
	%orig(true);
}

-(void)setShowsInlineChargingIndicator:(BOOL)enabled
{
	%orig(false);
}

%end

// vim: filetype=logos