Summary: | [Qt] Set windows key-code for multimedia keys | ||||||
---|---|---|---|---|---|---|---|
Product: | WebKit | Reporter: | Allan Sandfeld Jensen <allan.jensen> | ||||
Component: | UI Events | Assignee: | Allan Sandfeld Jensen <allan.jensen> | ||||
Status: | RESOLVED FIXED | ||||||
Severity: | Normal | CC: | hausmann, jturcotte | ||||
Priority: | P2 | ||||||
Version: | 528+ (Nightly build) | ||||||
Hardware: | Unspecified | ||||||
OS: | Unspecified | ||||||
Attachments: |
|
Description
Allan Sandfeld Jensen
2013-06-12 03:27:08 PDT
Created attachment 204423 [details]
Patch
Comment on attachment 204423 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=204423&action=review > Source/WebCore/platform/qt/PlatformKeyboardEventQt.cpp:439 > // VK_VOLUME_MUTE (AD) Windows 2000/XP: Volume Mute key > + case Qt::Key_VolumeMute: > + return VK_VOLUME_MUTE; Part of the file moves the comment after the value and remove the name in the comment. return VK_VOLUME_MUTE; // (AD) Windows 2000/XP: Volume Mute key I think it would be easier to read (slightly). r=me for the rest. Committed r151494: <http://trac.webkit.org/changeset/151494> |