mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-02-01 10:49:26 +00:00
Don't allow swipe with an invalid configuration
This commit is contained in:
parent
01f92e1198
commit
b126fc71e7
1 changed files with 4 additions and 2 deletions
|
|
@ -158,8 +158,10 @@
|
|||
}
|
||||
|
||||
- (IBAction)doHistorySwipe:(UISwipeGestureRecognizer *)sender {
|
||||
[[BuschJaegerMainView instance].historyView reload];
|
||||
[[BuschJaegerMainView instance].navigationController pushViewController:[BuschJaegerMainView instance].historyView animated:FALSE];
|
||||
if([[LinphoneManager instance].configuration valid]) {
|
||||
[[BuschJaegerMainView instance].historyView reload];
|
||||
[[BuschJaegerMainView instance].navigationController pushViewController:[BuschJaegerMainView instance].historyView animated:FALSE];
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue