diff options
Diffstat (limited to 'chrome/browser')
-rwxr-xr-x[-rw-r--r--] | chrome/browser/chromeos/status_area_view.cc | 6 | ||||
-rwxr-xr-x[-rw-r--r--] | chrome/browser/views/about_chrome_view.cc | 9 |
2 files changed, 7 insertions, 8 deletions
diff --git a/chrome/browser/chromeos/status_area_view.cc b/chrome/browser/chromeos/status_area_view.cc index 59f4f9c..5b268dd 100644..100755 --- a/chrome/browser/chromeos/status_area_view.cc +++ b/chrome/browser/chromeos/status_area_view.cc @@ -33,8 +33,6 @@ namespace { const int kLeftBorder = 1; // Number of pixels to separate the clock from the next item on the right. const int kClockSeparation = 4; -// Number of pixels to adjust the y value of the clock. -const int kClockYAdjustment = 2; // BrowserWindowGtk tiles its image with this offset const int kCustomFrameBackgroundVerticalOffset = 15; @@ -173,10 +171,6 @@ void StatusAreaView::Layout() { // Handle odd number of pixels. cur_y += (height() - cur_size.height()) % 2; - // Adjustment to make clock line up right. - if (cur == clock_view_) - cur_y += kClockYAdjustment; - // Put next in row horizontally, and center vertically. cur->SetBounds(cur_x, cur_y, cur_size.width(), cur_size.height()); diff --git a/chrome/browser/views/about_chrome_view.cc b/chrome/browser/views/about_chrome_view.cc index 63fabce..c4b2fdd 100644..100755 --- a/chrome/browser/views/about_chrome_view.cc +++ b/chrome/browser/views/about_chrome_view.cc @@ -486,8 +486,13 @@ void AboutChromeView::DrawTextAndPositionUrl(gfx::Canvas* canvas, gfx::Size sz = link->GetPreferredSize(); gfx::Insets insets = link->GetInsets(); WrapIfWordDoesntFit(sz.width(), font.height(), position, bounds); - *rect = gfx::Rect(position->width(), position->height() - insets.top(), - sz.width(), sz.height()); + int x = position->width(); + int y = position->height(); + + // Links have a border to allow them to be focused. + y -= insets.top(); + + *rect = gfx::Rect(x, y, sz.width(), sz.height()); // Go from relative pixel coordinates (within the label we are drawing on) // to absolute pixel coordinates (relative to the top left corner of the |