Index: chrome/browser/ui/cocoa/web_intent_sheet_controller.mm |
diff --git a/chrome/browser/ui/cocoa/web_intent_sheet_controller.mm b/chrome/browser/ui/cocoa/web_intent_sheet_controller.mm |
index b52e9f0aa7284a37ef7b6b2f7ae8222e560e8b65..ab9e85b9a42dda78ab1b30eb47fbff10ead0f62f 100644 |
--- a/chrome/browser/ui/cocoa/web_intent_sheet_controller.mm |
+++ b/chrome/browser/ui/cocoa/web_intent_sheet_controller.mm |
@@ -93,6 +93,11 @@ NSButton* CreateHyperlinkButton(NSString* title, const NSRect& frame) { |
- (BOOL)isFlipped { |
return YES; |
} |
+ |
+- (void)drawRect:(NSRect)rect { |
+ [[NSColor colorWithCalibratedWhite:1.0 alpha:1.0] set]; |
Nico
2012/07/21 00:43:30
[[NSColor whiteColor] set]
|
+ NSRectFill(rect); |
+} |
@end |
// NSImageView subclassed to allow fading the alpha value of the image to |