Comment #1 on issue 28105 by [email protected]: Mac: mouse cursor hides  
even for keyboard shortcuts
http://code.google.com/p/chromium/issues/detail?id=28105

Might be as easy as changing


   // Possibly autohide the cursor.
   if ([RenderWidgetHostViewCocoa shouldAutohideCursorForEvent:theEvent])
     [NSCursor setHiddenUntilMouseMoves:YES];

to


   // Possibly autohide the cursor.
   if (!equiv && [RenderWidgetHostViewCocoa
shouldAutohideCursorForEvent:theEvent])
     [NSCursor setHiddenUntilMouseMoves:YES];

in render_widget_host_view_mac.mm

--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

-- 
Automated mail from issue updates at http://crbug.com/
Subscription options: http://groups.google.com/group/chromium-bugs

Reply via email to