Skip to content

Commit abad6f3

Browse files
committed
Fixes the Ctrl/Alt key code in the Action class
1 parent c0ac1b9 commit abad6f3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Selenium/Common/Actions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ namespace Selenium {
2323
public class Actions : ComInterfaces._Actions {
2424

2525
const char KEY_SHIFT = '\xE008';
26-
const char KEY_ALT = '\xE009';
27-
const char KEY_CTRL = '\xE00A';
26+
const char KEY_CTRL = '\xE009';
27+
const char KEY_ALT = '\xE00A';
2828

2929
delegate void Action();
3030

0 commit comments

Comments
 (0)