From 320ea35c59cb173e3fefd9421d716f2d0b59ae04 Mon Sep 17 00:00:00 2001 From: aricloverEXALT <157071384+aricloverEXALT@users.noreply.github.com> Date: Mon, 13 Jan 2025 05:09:07 -0600 Subject: [PATCH] Update RootOptionsController.m --- Sources/RootOptionsController.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Sources/RootOptionsController.m b/Sources/RootOptionsController.m index 236ac4d..efbda89 100644 --- a/Sources/RootOptionsController.m +++ b/Sources/RootOptionsController.m @@ -103,7 +103,7 @@ cell.imageView.image = [UIImage systemImageNamed:@"drop.fill"]; } if (indexPath.row == 2) { - cell.textLabel.text = @"Reorder Pivot Bar Icons"; + cell.textLabel.text = @"Reorder Notifications Bar"; cell.detailTextLabel.text = @""; cell.imageView.image = [UIImage systemImageNamed:@"rectangle.grid.1x2.fill"]; } @@ -174,7 +174,7 @@ if (indexPath.row == 2) { ReorderNotificationsBar *reorderNotificationsBarController = [[ReorderNotificationsBar alloc] init]; UINavigationController *reorderNotificationsBarControllerView = [[UINavigationController alloc] initWithRootViewController:reorderNotificationsBarController]; - pivotBarReorderControllerView.modalPresentationStyle = UIModalPresentationFullScreen; + reorderNotificationsBarControllerView.modalPresentationStyle = UIModalPresentationFullScreen; [self presentViewController:reorderNotificationsBarControllerView animated:YES completion:nil]; }