diff --git a/macosx/Images/Badge.png b/macosx/Images/Badge.png index c79016e09..ab76151a2 100644 Binary files a/macosx/Images/Badge.png and b/macosx/Images/Badge.png differ diff --git a/macosx/Torrent.m b/macosx/Torrent.m index 3740e94b1..1bfab764c 100644 --- a/macosx/Torrent.m +++ b/macosx/Torrent.m @@ -452,10 +452,11 @@ static uint32_t kRed = BE(0xFF6450FF), //255, 100, 80 [alert setMessageText: [NSString stringWithFormat: @"Not enough remaining disk space to download \"%@\" completely.", [self name]]]; [alert setInformativeText: [NSString stringWithFormat: - @"The transfer has been paused. Clear up space on %@ to continue.", volume]]; - [alert runModal]; + @"The transfer will be paused. Clear up space on %@ to continue.", volume]]; + [alert addButtonWithTitle: @"OK"]; + [alert addButtonWithTitle: @"Download Anyway"]; - return NO; + return [alert runModal] != NSAlertFirstButtonReturn; } return YES; }