diff --git a/TrollStore/TSInstallationController.m b/TrollStore/TSInstallationController.m index 5c4d2eb..4caf61f 100644 --- a/TrollStore/TSInstallationController.m +++ b/TrollStore/TSInstallationController.m @@ -54,7 +54,7 @@ extern NSUserDefaults* trollStoreUserDefaults(void); } else if (ret == 182) { // non-fatal informative message UIAlertController* rebootNotification = [UIAlertController alertControllerWithTitle:@"Reboot Required" message:[error localizedDescription] preferredStyle:UIAlertControllerStyleAlert]; - UIAlertAction* closeAction = [UIAlertAction actionWithTitle:@"Close" style:UIAlertActionStyleDefault handler:^(UIAlertAction* action) + UIAlertAction* closeAction = [UIAlertAction actionWithTitle:@"Close" style:UIAlertActionStyleCancel handler:^(UIAlertAction* action) { if(completionBlock) completionBlock(YES, nil); }]; diff --git a/TrollStore/TSSettingsListController.m b/TrollStore/TSSettingsListController.m index d9037cd..3b3efca 100644 --- a/TrollStore/TSSettingsListController.m +++ b/TrollStore/TSSettingsListController.m @@ -408,7 +408,7 @@ extern NSUserDefaults* trollStoreUserDefaults(void); message:@"After rebooting, select \"Turn On\" to enable developer mode." preferredStyle:UIAlertControllerStyleAlert ]; - UIAlertAction* closeAction = [UIAlertAction actionWithTitle:@"Close" style:UIAlertActionStyleDefault handler:^(UIAlertAction* action) + UIAlertAction* closeAction = [UIAlertAction actionWithTitle:@"Close" style:UIAlertActionStyleCancel handler:^(UIAlertAction* action) { [self reloadSpecifiers]; }];