diff --git a/MacPass/MPAutotypeDelay.m b/MacPass/MPAutotypeDelay.m index b8dc80ea..243dd734 100644 --- a/MacPass/MPAutotypeDelay.m +++ b/MacPass/MPAutotypeDelay.m @@ -29,7 +29,7 @@ self = [super init]; if(self) { /* Delays longer than a minute are a bit long */ - _delay = MIN(60,delay); + _delay = MIN(60*1000,delay); } return self; }