mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-05-06 21:33:08 +00:00
LinphoneCoreSettingsStore: do not synchronize settings in init, it will be done when view is visible
This commit is contained in:
parent
e08122e368
commit
dd5f86e420
2 changed files with 2 additions and 2 deletions
|
|
@ -31,7 +31,6 @@ extern void linphone_iphone_log_handler(int lev, const char *fmt, va_list args);
|
|||
if (self) {
|
||||
dict = [[NSMutableDictionary alloc] init];
|
||||
changedDict = [[NSMutableDictionary alloc] init];
|
||||
[self transformLinphoneCoreToKeys];
|
||||
}
|
||||
return self;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -444,7 +444,8 @@ static UICompositeViewDescription *compositeDescription = nil;
|
|||
- (void)viewWillAppear:(BOOL)animated {
|
||||
[super viewWillAppear:animated];
|
||||
|
||||
[settingsStore transformLinphoneCoreToKeys]; // Sync settings with linphone core settings
|
||||
// Sync settings with linphone core settings
|
||||
[settingsStore transformLinphoneCoreToKeys];
|
||||
settingsController.hiddenKeys = [self findHiddenKeys];
|
||||
[settingsController.tableView reloadData];
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue