From ead9b92605bf38eba607ac26bdba4aa51fe67d23 Mon Sep 17 00:00:00 2001 From: Simon Morlat Date: Wed, 9 Feb 2011 12:32:15 +0100 Subject: [PATCH] play dtmf also when in call --- Classes/LinphoneUI/UIDigitButton.m | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Classes/LinphoneUI/UIDigitButton.m b/Classes/LinphoneUI/UIDigitButton.m index a72216cbc..faa8e17f5 100644 --- a/Classes/LinphoneUI/UIDigitButton.m +++ b/Classes/LinphoneUI/UIDigitButton.m @@ -36,7 +36,8 @@ [self performSelector:@selector(doKeyZeroLongPress) withObject:nil afterDelay:0.5]; } } else { - linphone_core_send_dtmf([LinphoneManager getLc],mDigit); + linphone_core_send_dtmf([LinphoneManager getLc],mDigit); + linphone_core_play_dtmf([LinphoneManager getLc], mDigit, 100); } }