dialer: stop dtmf on long press

This commit is contained in:
Gautier Pelloux-Prayer 2016-01-19 16:16:24 +01:00
parent d661309987
commit b9e9337941

View file

@ -419,6 +419,7 @@ static UICompositeViewDescription *compositeDescription = nil;
NSString *newAddress =
[[self.addressField.text substringToIndex:[self.addressField.text length] - 1] stringByAppendingString:@"+"];
[self.addressField setText:newAddress];
linphone_core_stop_dtmf(LC);
}
- (void)onOneLongClick:(id)sender {
@ -432,5 +433,6 @@ static UICompositeViewDescription *compositeDescription = nil;
} else {
LOGE(@"Cannot call voice mail because URI not set or invalid!");
}
linphone_core_stop_dtmf(LC);
}
@end