Update RootOptionsController.m (remove App Icon stuff)

New implementation related to the app icons has now made it incompatible with the rootoptions menu.
This commit is contained in:
arichornlover 2024-04-15 18:00:06 -05:00 committed by GitHub
parent 9e5018ef90
commit 1aa0a9cfb8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,7 +1,6 @@
#import "RootOptionsController.h"
#import "ColourOptionsController.h"
#import "ColourOptionsController2.h"
#import "AppIconOptionsController.h"
@interface RootOptionsController ()
@end
@ -15,9 +14,6 @@
UIBarButtonItem *doneButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemDone target:self action:@selector(done)];
self.navigationItem.leftBarButtonItem = doneButton;
UIBarButtonItem *appIconButton = [[UIBarButtonItem alloc] initWithTitle:@"App Icon" style:UIBarButtonItemStylePlain target:self action:@selector(showAppIconOptions)];
self.navigationItem.rightBarButtonItem = appIconButton;
UITableViewStyle style;
if (@available(iOS 13, *)) {