From 67618dbd3b5dd4a1c6b28f302f4bac3a79cb51b3 Mon Sep 17 00:00:00 2001 From: Gautier Pelloux-Prayer Date: Mon, 23 Mar 2015 17:03:25 +0100 Subject: [PATCH] linphonecall.c: when call parameters have been changed, modify the display status accordingly --- coreapi/linphonecall.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/coreapi/linphonecall.c b/coreapi/linphonecall.c index 8129b993d..63ff350b5 100644 --- a/coreapi/linphonecall.c +++ b/coreapi/linphonecall.c @@ -1296,6 +1296,11 @@ void linphone_call_set_state(LinphoneCall *call, LinphoneCallState cstate, const linphone_core_multicast_lock_release(call->core); #endif break; + case LinphoneCallStreamsRunning: + if (call->prevstate == LinphoneCallUpdating || call->prevstate == LinphoneCallUpdatedByRemote) { + linphone_core_notify_display_status(lc,_("Call parameters were successfully modified.")); + } + break; default: break; }