Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1345)

Unified Diff: chrome/browser/chromeos/browser_extenders.cc

Issue 518077: Revert "Reverting workaround for focus issue in WidgetGtk." (Closed)
Patch Set: Created 10 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/browser_extenders.cc
diff --git a/chrome/browser/chromeos/browser_extenders.cc b/chrome/browser/chromeos/browser_extenders.cc
index e59bbfcdae01a2bf5a70a9715ff64aaeec8e0098..578586e7152d076dbba6f5c433f47b91f8c5bdc8 100644
--- a/chrome/browser/chromeos/browser_extenders.cc
+++ b/chrome/browser/chromeos/browser_extenders.cc
@@ -178,9 +178,13 @@ class NormalExtender : public BrowserExtender,
if (compact_navigation_bar_->IsVisible()) {
gfx::Size cnb_bounds = compact_navigation_bar_->GetPreferredSize();
- compact_navigation_bar_->SetBounds(curx, bounds.y(),
+ // This (+1/-1) is a quick hack for the bug
+ // http://code.google.com/p/chromium-os/issues/detail?id=1010
+ // while investigating the issue. It could be in gtk or around
+ // NativeViewHostGtk::CreateFixed, but it will take some time.
+ compact_navigation_bar_->SetBounds(curx, bounds.y() + 1,
cnb_bounds.width(),
- bounds.height());
+ bounds.height() - 1);
curx += cnb_bounds.width();
width -= cnb_bounds.width();
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698