diff options
author | deanm@chromium.org <deanm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-04 16:20:55 +0000 |
---|---|---|
committer | deanm@chromium.org <deanm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-04 16:20:55 +0000 |
commit | 78117b9c3b21847aee5373b3d936bb7213216ce6 (patch) | |
tree | 9210f376517b962de0a2c0648bb2ee98ddb08e5d /chrome/browser/autocomplete | |
parent | d215b354efb3afca6a0abc4825b4eb7e7b303a33 (diff) | |
download | chromium_src-78117b9c3b21847aee5373b3d936bb7213216ce6.zip chromium_src-78117b9c3b21847aee5373b3d936bb7213216ce6.tar.gz chromium_src-78117b9c3b21847aee5373b3d936bb7213216ce6.tar.bz2 |
Fix some recently small size / position regressions in Linux Omnibox.
Review URL: http://codereview.chromium.org/100343
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@15204 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/autocomplete')
-rw-r--r-- | chrome/browser/autocomplete/autocomplete_popup_view_gtk.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/autocomplete/autocomplete_popup_view_gtk.cc b/chrome/browser/autocomplete/autocomplete_popup_view_gtk.cc index 9497334..656907a 100644 --- a/chrome/browser/autocomplete/autocomplete_popup_view_gtk.cc +++ b/chrome/browser/autocomplete/autocomplete_popup_view_gtk.cc @@ -46,7 +46,7 @@ const int kIconWidth = 16; // We want to vertically center the image in the result space. const int kIconTopPadding = 4; // Space between the left edge (including the border) and the text. -const int kIconLeftPadding = 6; +const int kIconLeftPadding = 6 + kBorderThickness; // Space between the image and the text. Would be 6 to line up with the // entry, but nudge it a bit more to match with the text in the entry. const int kIconRightPadding = 10; |