Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions Ramiel/RamielView.m
Original file line number Diff line number Diff line change
Expand Up @@ -452,6 +452,7 @@ - (IBAction)startBootProcess:(NSButton *)sender {
@"Please enter it now.",
[userDevice getModel]]];
[pwnNotice addButtonWithTitle:@"Run checkm8"];
[pwnNotice addButtonWithTitle:@"Cancel"];
pwnNotice.window.titlebarAppearsTransparent = true;
NSModalResponse choice = [pwnNotice runModal];
if (choice == NSAlertFirstButtonReturn) {
Expand All @@ -468,6 +469,14 @@ - (IBAction)startBootProcess:(NSButton *)sender {
}
break;
}
} else if (choice == NSAlertSecondButtonReturn){
stopBackground = 0;
[self->_bootButton setHidden:FALSE];
[self->_bootButton setEnabled:TRUE];
[self->_settingsButton setHidden:FALSE];
[self->_settingsButton setEnabled:TRUE];
[pwnNotice.window orderOut:self];
[pwnNotice.window close];
}
}
}
Expand Down