From 9ca70edeb466b9e62698234b99e971c6eec96b7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Grisez?= Date: Thu, 4 Aug 2016 16:04:34 +0200 Subject: [PATCH] Fix bug arround sensitivity of "media encryption mandatory" checkbox --- gtk/propertybox.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/propertybox.c b/gtk/propertybox.c index 6dd46b061..319b1ab93 100644 --- a/gtk/propertybox.c +++ b/gtk/propertybox.c @@ -1294,7 +1294,7 @@ static void linphone_gtk_media_encryption_changed(GtkWidget *combo){ gtk_widget_set_sensitive(mandatory_box,TRUE); }else if (strcasecmp(selected,"DTLS")==0){ linphone_core_set_media_encryption(lc,LinphoneMediaEncryptionDTLS); - gtk_widget_set_sensitive(mandatory_box,FALSE); + gtk_widget_set_sensitive(mandatory_box,TRUE); }else if (strcasecmp(selected,"ZRTP")==0){ linphone_core_set_media_encryption(lc,LinphoneMediaEncryptionZRTP); gtk_widget_set_sensitive(mandatory_box,FALSE);