Browse Source

make not gay

pull/1/head
Burrit0z 4 years ago
parent
commit
6aafd4f65a
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      KAIBattery.mm

+ 2
- 2
KAIBattery.mm View File

} }
[label setTextColor:[UIColor whiteColor]]; [label setTextColor:[UIColor whiteColor]];
label.lineBreakMode = NSLineBreakByWordWrapping; label.lineBreakMode = NSLineBreakByWordWrapping;
label.numberOfLines = 0;
label.numberOfLines = 1;
[label setText:labelText]; [label setText:labelText];


_UIBatteryView *battery = [[_UIBatteryView alloc] init]; _UIBatteryView *battery = [[_UIBatteryView alloc] init];
[percentLabel setTextColor:[UIColor whiteColor]]; [percentLabel setTextColor:[UIColor whiteColor]];
percentLabel.lineBreakMode = NSLineBreakByWordWrapping; percentLabel.lineBreakMode = NSLineBreakByWordWrapping;
[percentLabel setTextAlignment:NSTextAlignmentRight]; [percentLabel setTextAlignment:NSTextAlignmentRight];
percentLabel.numberOfLines = 0;
percentLabel.numberOfLines = 1;
[percentLabel setText:[NSString stringWithFormat:@"%ld%%", (long)((NSInteger) batteryPercentage)]]; [percentLabel setText:[NSString stringWithFormat:@"%ld%%", (long)((NSInteger) batteryPercentage)]];
if(charging) battery.chargingState = 1; if(charging) battery.chargingState = 1;
battery.showsInlineChargingIndicator = YES; battery.showsInlineChargingIndicator = YES;

Loading…
Cancel
Save