Index: chrome/browser/cocoa/location_bar/location_icon_decoration.mm |
=================================================================== |
--- chrome/browser/cocoa/location_bar/location_icon_decoration.mm (revision 52715) |
+++ chrome/browser/cocoa/location_bar/location_icon_decoration.mm (working copy) |
@@ -30,7 +30,7 @@ |
NSImage* image = GetImage(); |
if (image) { |
const CGFloat image_width = [image size].width; |
- if (image_width >= width) |
+ if (image_width <= width) |
return image_width; |
} |
return kOmittedWidth; |