Normalization now can expand repeated keystrokes

This commit is contained in:
michael starke
2014-02-19 17:44:34 +01:00
parent a73986de28
commit 84cd196d54
2 changed files with 12 additions and 4 deletions

View File

@@ -28,7 +28,7 @@
- (instancetype)initWithEntry:(KPKEntry *)entry andSequence:(NSString *)sequence {
self = [super init];
if(self) {
_command = [[sequence normalizedCommand] copy];
_command = [[sequence normalizedAutotypeSequence] copy];
_entry = entry;
}
return self;