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

Unified Diff: views/widget/widget_gtk.cc

Issue 519082: Raise the window when showing the widget. (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: views/widget/widget_gtk.cc
diff --git a/views/widget/widget_gtk.cc b/views/widget/widget_gtk.cc
index e10bf6031704a174c37d676655c121e22179bb91..65e45e8464fdc798d825f0f4c8b0935664b4b7f9 100644
--- a/views/widget/widget_gtk.cc
+++ b/views/widget/widget_gtk.cc
@@ -449,8 +449,11 @@ void WidgetGtk::CloseNow() {
}
void WidgetGtk::Show() {
- if (widget_)
+ if (widget_) {
gtk_widget_show(widget_);
+ if (widget_->window)
+ gdk_window_raise(widget_->window);
+ }
}
void WidgetGtk::Hide() {
« 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