mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-24 12:19:52 +00:00
Bumped Version. Added descriptions to autotype commands
This commit is contained in:
@@ -21,10 +21,14 @@
|
||||
return self;
|
||||
}
|
||||
|
||||
- (NSString *)description {
|
||||
return [[NSString alloc] initWithFormat:@"%@ delay: %ld ms", [self class], _delay];
|
||||
}
|
||||
|
||||
- (instancetype)initWithDelay:(NSUInteger)delay {
|
||||
self = [super init];
|
||||
if(self) {
|
||||
/* Delays longer than a minute are a bit lon */
|
||||
/* Delays longer than a minute are a bit long */
|
||||
_delay = MIN(60,delay);
|
||||
}
|
||||
return self;
|
||||
|
||||
Reference in New Issue
Block a user