diff options
| -rw-r--r-- | Framework/MASShortcutView.m | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/Framework/MASShortcutView.m b/Framework/MASShortcutView.m index 0ae8f6c..a449829 100644 --- a/Framework/MASShortcutView.m +++ b/Framework/MASShortcutView.m @@ -399,8 +399,8 @@ void *kUserDataHint = &kUserDataHint;                                                                   @"Title for alert when shortcut is already used");                              NSAlert* alert = [[NSAlert alloc]init];                              alert.alertStyle = NSCriticalAlertStyle; -                            alert.informativeText = [NSString stringWithFormat:format, shortcut]; -                            alert.messageText = explanation; +                            alert.informativeText = explanation; +                            alert.messageText = [NSString stringWithFormat:format, shortcut];                              [alert addButtonWithTitle:NSLocalizedString(@"OK", @"Alert button when shortcut is already used")];                              [alert runModal]; | 
