Chromium Code Reviews| Index: plugin/linux/main_linux.cc |
| =================================================================== |
| --- plugin/linux/main_linux.cc (revision 60518) |
| +++ plugin/linux/main_linux.cc (working copy) |
| @@ -916,7 +916,8 @@ |
| 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, |