From 8cf9384fa97073ecce82d4e63922ff1f13914b3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Grisez?= Date: Fri, 11 Sep 2015 16:29:16 +0200 Subject: [PATCH] Display the record button when calling bot.linphone.org --- gtk/incall_view.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gtk/incall_view.c b/gtk/incall_view.c index 9678c3933..9575dcdf2 100644 --- a/gtk/incall_view.c +++ b/gtk/incall_view.c @@ -795,10 +795,12 @@ void linphone_gtk_in_call_view_set_in_call(LinphoneCall *call){ void linphone_gtk_in_call_view_set_paused(LinphoneCall *call){ GtkWidget *callview=(GtkWidget*)linphone_call_get_user_pointer(call); GtkWidget *status=linphone_gtk_get_widget(callview,"in_call_status"); + GtkWidget *record_bar = linphone_gtk_get_widget(callview, "record_hbox"); gtk_widget_hide(linphone_gtk_get_widget(callview,"answer_decline_panel")); gtk_label_set_markup(GTK_LABEL(status),_("Paused call")); linphone_gtk_in_call_show_video(call); linphone_gtk_in_call_set_animation_image(callview,GTK_STOCK_MEDIA_PAUSE,TRUE); + gtk_widget_show_all(record_bar); } void linphone_gtk_in_call_view_update_duration(LinphoneCall *call){