Title: [226313] trunk/Source/WebCore
Revision
226313
Author
[email protected]
Date
2017-12-30 20:38:52 -0800 (Sat, 30 Dec 2017)

Log Message

REGRESSION (r225494): Mouse pointer reappears shortly after hiding when scrolling using arrow keys
https://bugs.webkit.org/show_bug.cgi?id=181193

Reviewed by Alexey Proskuryakov.

* page/EventHandler.cpp:
(WebCore::EventHandler::cancelAutoHideCursorTimer): Removed a call to unhide the cursor
  here.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (226312 => 226313)


--- trunk/Source/WebCore/ChangeLog	2017-12-30 19:30:40 UTC (rev 226312)
+++ trunk/Source/WebCore/ChangeLog	2017-12-31 04:38:52 UTC (rev 226313)
@@ -1,3 +1,14 @@
+2017-12-30  Dan Bernstein  <[email protected]>
+
+        REGRESSION (r225494): Mouse pointer reappears shortly after hiding when scrolling using arrow keys
+        https://bugs.webkit.org/show_bug.cgi?id=181193
+
+        Reviewed by Alexey Proskuryakov.
+
+        * page/EventHandler.cpp:
+        (WebCore::EventHandler::cancelAutoHideCursorTimer): Removed a call to unhide the cursor
+          here.
+
 2017-12-30  Wenson Hsieh  <[email protected]>
 
         [Attachment Support] Remove current macOS support for dragging file-backed attachments

Modified: trunk/Source/WebCore/page/EventHandler.cpp (226312 => 226313)


--- trunk/Source/WebCore/page/EventHandler.cpp	2017-12-30 19:30:40 UTC (rev 226312)
+++ trunk/Source/WebCore/page/EventHandler.cpp	2017-12-31 04:38:52 UTC (rev 226313)
@@ -1589,9 +1589,6 @@
 {
     if (m_autoHideCursorTimer.isActive())
         m_autoHideCursorTimer.stop();
-
-    if (auto page = m_frame.page())
-        page->chrome().setCursorHiddenUntilMouseMoves(false);
 }
 
 void EventHandler::autoHideCursorTimerFired()
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to