From 332ab5e4ee164ff48f9c13e8dd0c9b7d9530e0d1 Mon Sep 17 00:00:00 2001 From: Yann Diorcet Date: Fri, 27 Jul 2012 12:15:44 +0200 Subject: [PATCH] Hide about/quit button in setting view --- Classes/SettingsViewController.m | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Classes/SettingsViewController.m b/Classes/SettingsViewController.m index be5ae481e..14c9fbefe 100644 --- a/Classes/SettingsViewController.m +++ b/Classes/SettingsViewController.m @@ -383,6 +383,9 @@ static UICompositeViewDescription *compositeDescription = nil; } NSMutableSet *hiddenKeys = [NSMutableSet set]; + [hiddenKeys addObject:@"quit_button"]; // Hide for the moment + [hiddenKeys addObject:@"about_button"]; // Hide for the moment + if (!linphone_core_video_supported([LinphoneManager getLc])) [hiddenKeys addObject:@"video_menu"];