Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Tweak.xm
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ bool showTimer = YES;
%property(retain, nonatomic) NSString *SBTOriginalText;
%property(retain, nonatomic) MTTimer *nextTimer;
%property(retain, nonatomic) NSTimer *oneSecTimer;
%property(retain, nonatomic) UIColor *textColor;

-(id)initWithFrame:(CGRect)arg1 {
[[NSNotificationCenter defaultCenter] removeObserver:self name:@"MTTimerManagerNextTimerChanged" object:nil];
Expand Down Expand Up @@ -68,6 +69,7 @@ bool showTimer = YES;
if (showTimer && showInThisView)
{
long seconds = [self.nextTimer remainingTime];
self.textColor = [UIColor colorWithRed:188 green:149 blue:88 alpha:1.0];

if (seconds >= 3600)
{
Expand Down