diff options
author | zhurunz@google.com <zhurunz@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-24 22:14:59 +0000 |
---|---|---|
committer | zhurunz@google.com <zhurunz@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-24 22:14:59 +0000 |
commit | f3da4a2a4494f315000616cc756323b3af2e9f45 (patch) | |
tree | 08f1827123c94ddbe5439bed3e7bbc68d68adcf8 /o3d/plugin | |
parent | 7d5fa7f49a30e7bf5bac2f02a08830bb2b247fb0 (diff) | |
download | chromium_src-f3da4a2a4494f315000616cc756323b3af2e9f45.zip chromium_src-f3da4a2a4494f315000616cc756323b3af2e9f45.tar.gz chromium_src-f3da4a2a4494f315000616cc756323b3af2e9f45.tar.bz2 |
Fix fullscreen on ChromeOS.
Review URL: http://codereview.chromium.org/3386029
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@60535 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'o3d/plugin')
-rw-r--r-- | o3d/plugin/linux/main_linux.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/o3d/plugin/linux/main_linux.cc b/o3d/plugin/linux/main_linux.cc index a61f6f8..c235f14 100644 --- a/o3d/plugin/linux/main_linux.cc +++ b/o3d/plugin/linux/main_linux.cc @@ -916,7 +916,8 @@ gboolean PluginObject::OnGtkConfigure(GtkWidget *widget, client()->SendResizeEvent(renderer()->width(), renderer()->height(), true); fullscreen_ = true; - return TRUE; + // Return false here so that the default handler in GTK will still be invoked. + return FALSE; } gboolean PluginObject::OnGtkDelete(GtkWidget *widget, |