Changeset 280501 in webkit
- Timestamp:
- Jul 30, 2021, 4:04:07 PM (5 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
platform/KeyboardScrollingAnimator.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r280498 r280501 1 2021-07-30 Dana Estra <destra@apple.com> 2 3 Add spacebar functionality for macOS smooth scrolling 4 https://bugs.webkit.org/show_bug.cgi?id=228155 5 6 Reviewed by Tim Horton. 7 8 Fixed bug that was causing spacebar events to return false from beginKeyboardScrollGesture. 9 10 Manually tested on webpage. 11 12 * platform/KeyboardScrollingAnimator.cpp: 13 (WebCore::KeyboardScrollingAnimator::beginKeyboardScrollGesture): 14 1 15 2021-07-30 Chris Dumez <cdumez@apple.com> 2 16 -
trunk/Source/WebCore/platform/KeyboardScrollingAnimator.cpp
r280492 r280501 231 231 m_currentKeyboardScroll = scroll; 232 232 233 if ( event.type() != eventNames().keydownEvent)233 if (!(event.type() == eventNames().keydownEvent || event.type() == eventNames().keypressEvent)) 234 234 return false; 235 235
Note:
See TracChangeset
for help on using the changeset viewer.