| 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 8502fde4d6c4de03ca1138b7ceada9f292fb248f..d30c9c35fd9f2aa407a2a88ce5e0949ec71d54eb 100644
|
| --- a/chrome/browser/ui/gtk/bookmarks/bookmark_bar_gtk.cc
|
| +++ b/chrome/browser/ui/gtk/bookmarks/bookmark_bar_gtk.cc
|
| @@ -456,7 +456,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.
|
|
|