Chromium Code Reviews| Index: content/renderer/render_view.cc |
| =================================================================== |
| --- content/renderer/render_view.cc (revision 91505) |
| +++ content/renderer/render_view.cc (working copy) |
| @@ -4261,6 +4261,9 @@ |
| pepper_delegate_.OnContextMenuClosed(custom_context); |
| else |
| context_menu_node_.reset(); |
| + // Re-send the cursor to the view so that it can display the correct cursor |
| + // after the menu is closed (rather than waiting for a mouse move event). |
| + Send(new ViewHostMsg_SetCursor(routing_id_, current_cursor_)); |
|
brettw
2011/07/06 17:04:31
How do you know the old cursor is the right one to
|
| } |
| void RenderView::OnNetworkStateChanged(bool online) { |