mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-30 01:39:20 +00:00
Fix XIB button sometimes disabled with xcode compilation
This commit is contained in:
parent
c6f41b3d72
commit
1a7c27e609
1 changed files with 7 additions and 0 deletions
|
|
@ -135,6 +135,13 @@ static UICompositeViewDescription *compositeDescription = nil;
|
|||
selector:@selector(coreUpdateEvent:)
|
||||
name:kLinphoneCoreUpdate
|
||||
object:nil];
|
||||
|
||||
// technically not needed, but older versions of linphone had this button
|
||||
// disabled by default. In this case, updating by pushing a new version with
|
||||
// xcode would result in the callbutton being disabled all the time.
|
||||
// We force it enabled anyway now.
|
||||
[callButton setEnabled:TRUE];
|
||||
|
||||
// Update on show
|
||||
if([LinphoneManager isLcReady]) {
|
||||
LinphoneManager *mgr=[LinphoneManager instance];
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue