summaryrefslogtreecommitdiffstats
path: root/views/window
diff options
context:
space:
mode:
authorsky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-04-23 14:56:31 +0000
committersky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-04-23 14:56:31 +0000
commite7e50227f66d9b55f2011ad8ec355d7c3c70867a (patch)
tree9a9f70d4f43e709f45ae8c50a06732ffb7fa8e53 /views/window
parent4e7ca8180fd5bc9854d6c030960391dd985266b0 (diff)
downloadchromium_src-e7e50227f66d9b55f2011ad8ec355d7c3c70867a.zip
chromium_src-e7e50227f66d9b55f2011ad8ec355d7c3c70867a.tar.gz
chromium_src-e7e50227f66d9b55f2011ad8ec355d7c3c70867a.tar.bz2
Gets rid of the annoying white dot in the upper left corner of all
chromeos windows. This white dot was a gtkfixed that should not have been visible. It was being made visible by the show_all in WindowGtk. There may be some regressions from this change, but we should individually be doing show/show_all for hierarchies rather than in window. BUG=none TEST=none Review URL: http://codereview.chromium.org/1730008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45442 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'views/window')
-rw-r--r--views/window/window_gtk.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/views/window/window_gtk.cc b/views/window/window_gtk.cc
index 4b0a682..d0ba7bc 100644
--- a/views/window/window_gtk.cc
+++ b/views/window/window_gtk.cc
@@ -120,7 +120,7 @@ void WindowGtk::SetBounds(const gfx::Rect& bounds,
}
void WindowGtk::Show() {
- gtk_widget_show_all(GetNativeView());
+ gtk_widget_show(GetNativeView());
}
void WindowGtk::HideWindow() {