| Index: chrome/browser/cocoa/location_bar/location_icon_decoration.mm
|
| diff --git a/chrome/browser/cocoa/location_bar/location_icon_decoration.mm b/chrome/browser/cocoa/location_bar/location_icon_decoration.mm
|
| index 7c04548ee80e47860b9a86398b43a88716f10519..34cfe78e25e1fa37b5ca957ed956d52d68ba802a 100644
|
| --- a/chrome/browser/cocoa/location_bar/location_icon_decoration.mm
|
| +++ b/chrome/browser/cocoa/location_bar/location_icon_decoration.mm
|
| @@ -30,7 +30,7 @@ CGFloat LocationIconDecoration::GetWidthForSpace(CGFloat width) {
|
| 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;
|
|
|