| Index: chrome/browser/ui/gtk/bookmarks/bookmark_bar_gtk.cc
|
| diff --git a/chrome/browser/ui/gtk/bookmarks/bookmark_bar_gtk.cc b/chrome/browser/ui/gtk/bookmarks/bookmark_bar_gtk.cc
|
| index b9c15f2625411d0299022197b2c28e3cefff53a2..5e87b892bd2f968b2ce0c2230edfe69d915d410d 100644
|
| --- a/chrome/browser/ui/gtk/bookmarks/bookmark_bar_gtk.cc
|
| +++ b/chrome/browser/ui/gtk/bookmarks/bookmark_bar_gtk.cc
|
| @@ -486,7 +486,8 @@ void BookmarkBarGtk::Hide(BookmarkBar::State old_state,
|
|
|
| // After coming out of fullscreen, the browser window sets the bookmark bar
|
| // to the "hidden" state, which means we need to show our minimum height.
|
| - gtk_widget_show(widget());
|
| + if (!window_->IsFullscreen())
|
| + gtk_widget_show(widget());
|
| CalculateMaxHeight();
|
| // Sometimes we get called without a matching call to open. If that happens
|
| // then force hide.
|
|
|