summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--chrome/browser/views/frame/browser_view_layout.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/browser/views/frame/browser_view_layout.cc b/chrome/browser/views/frame/browser_view_layout.cc
index f7f6de0..7167dad 100644
--- a/chrome/browser/views/frame/browser_view_layout.cc
+++ b/chrome/browser/views/frame/browser_view_layout.cc
@@ -390,7 +390,8 @@ int BrowserViewLayout::GetTopMarginForActiveContent() {
return 0;
}
- return active_bookmark_bar_->height();
+ // Adjust for separator.
+ return active_bookmark_bar_->height() - kSeparationLineHeight;
}
int BrowserViewLayout::LayoutDownloadShelf(int bottom) {