forked from mirrors/linphone-iphone
[Regression fix] disable the conference butten when there is only one call
This commit is contained in:
parent
916f1c6faf
commit
973591c715
1 changed files with 1 additions and 1 deletions
|
|
@ -816,7 +816,7 @@ static void linphone_gtk_update_call_buttons(LinphoneCall *call){
|
|||
conf_frame=(GtkWidget *)g_object_get_data(G_OBJECT(mw),"conf_frame");
|
||||
if(conf_frame==NULL){
|
||||
linphone_gtk_enable_transfer_button(lc,call_list_size>1);
|
||||
linphone_gtk_enable_conference_button(lc,call_list_size>0);
|
||||
linphone_gtk_enable_conference_button(lc,call_list_size>1);
|
||||
} else {
|
||||
linphone_gtk_enable_transfer_button(lc,FALSE);
|
||||
linphone_gtk_enable_conference_button(lc,FALSE);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue