diff options
author | estade@chromium.org <estade@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-03 00:43:13 +0000 |
---|---|---|
committer | estade@chromium.org <estade@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-03 00:43:13 +0000 |
commit | 92de983bc3f9a3b8fea69bfac907533a69dc4e97 (patch) | |
tree | a55473dc7977ed213eac09772b98f3a8d8ebabc4 /chrome | |
parent | d147dc266142d98a374b07510f27d57ed278f96c (diff) | |
download | chromium_src-92de983bc3f9a3b8fea69bfac907533a69dc4e97.zip chromium_src-92de983bc3f9a3b8fea69bfac907533a69dc4e97.tar.gz chromium_src-92de983bc3f9a3b8fea69bfac907533a69dc4e97.tar.bz2 |
Change some numbers on the gtk bookmark bar.
height = 29 matches windows constant
padding between bookmark name and favico: I couldn't find a relevant constant in the windows code, so I experimentally matched the spacing between the two, for the same bookmark on linux and windows.
BUG=http://crbug.com/15882
TEST=look at bookmark bar
Review URL: http://codereview.chromium.org/155019
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19871 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/browser/gtk/bookmark_bar_gtk.cc | 2 | ||||
-rw-r--r-- | chrome/browser/gtk/bookmark_utils_gtk.cc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/gtk/bookmark_bar_gtk.cc b/chrome/browser/gtk/bookmark_bar_gtk.cc index ca12189..b0ee86a 100644 --- a/chrome/browser/gtk/bookmark_bar_gtk.cc +++ b/chrome/browser/gtk/bookmark_bar_gtk.cc @@ -38,7 +38,7 @@ namespace { // The height of the bar. -const int kBookmarkBarHeight = 33; +const int kBookmarkBarHeight = 29; // Left-padding for the instructional text. const int kInstructionsPadding = 6; diff --git a/chrome/browser/gtk/bookmark_utils_gtk.cc b/chrome/browser/gtk/bookmark_utils_gtk.cc index 13a25ec..30768a1 100644 --- a/chrome/browser/gtk/bookmark_utils_gtk.cc +++ b/chrome/browser/gtk/bookmark_utils_gtk.cc @@ -47,7 +47,7 @@ namespace bookmark_utils { const char kBookmarkNode[] = "bookmark-node"; -const int kBarButtonPadding = 2; +const int kBarButtonPadding = 4; GdkPixbuf* GetFolderIcon() { ResourceBundle& rb = ResourceBundle::GetSharedInstance(); |