[Webkit-unassigned] [Bug 82738] New: [EFL] keycode translation is wrong for function keys

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Fri Mar 30 09:25:40 PDT 2012


https://bugs.webkit.org/show_bug.cgi?id=82738

           Summary: [EFL] keycode translation is wrong for function keys
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: Unspecified
        OS/Version: Unspecified
            Status: UNCONFIRMED
          Severity: Normal
          Priority: P2
         Component: WebKit EFL
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: naginenis at gmail.com
                CC: demarchi at webkit.org, gyuyoung.kim at webkit.org


The following code sets wrong keycode value for function keys.

// Set F_XX keys to the windowsKeyMap.
>>    for (unsigned int i = 1; i < 25; i++) {
>        String key = "F" + String::number(i);
>>       windowsKeyMap().set(key, VK_F1 + i);

Vk_F1 keycode is equivalent to F1, so it should be 'VK_F1 + i - 1' instead of 'VK_F1 + i'.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list