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

Unified Diff: chrome/browser/ui/gtk/status_bubble_gtk.cc

Issue 6343003: [gtk] un-break status bubble. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 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/ui/gtk/status_bubble_gtk.cc
diff --git a/chrome/browser/ui/gtk/status_bubble_gtk.cc b/chrome/browser/ui/gtk/status_bubble_gtk.cc
index 79e607363463503c0a4eb2dc7ddee434ffef72f0..7f2dccb1e74853fbbd42bb3d6cff744abedad1ac 100644
--- a/chrome/browser/ui/gtk/status_bubble_gtk.cc
+++ b/chrome/browser/ui/gtk/status_bubble_gtk.cc
@@ -115,7 +115,7 @@ void StatusBubbleGtk::Show() {
// If we were going to hide, stop.
hide_timer_.Stop();
- gtk_widget_show_all(container_.get());
+ gtk_widget_show(container_.get());
if (container_->window)
gdk_window_raise(container_->window);
}
@@ -125,7 +125,7 @@ void StatusBubbleGtk::Hide() {
expand_timer_.Stop();
expand_animation_.reset();
- gtk_widget_hide_all(container_.get());
+ gtk_widget_hide(container_.get());
}
void StatusBubbleGtk::SetStatusTextTo(const std::string& status_utf8) {
@@ -253,6 +253,7 @@ void StatusBubbleGtk::InitWidgets() {
kInternalLeftRightPadding + (ltr ? 0 : kCornerSize),
kInternalLeftRightPadding + (ltr ? kCornerSize : 0));
gtk_container_add(GTK_CONTAINER(padding_), label_);
+ gtk_widget_show_all(padding_);
container_.Own(gtk_event_box_new());
gtk_widget_set_no_show_all(container_.get(), TRUE);
« 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