]
Denis Golovin updated JBIDE-20932:
----------------------------------
Fix Version/s: 4.4.0.Alpha1
Fix KeyBindingsTest errors on Mac OS X
--------------------------------------
Key: JBIDE-20932
URL:
https://issues.jboss.org/browse/JBIDE-20932
Project: Tools (JBoss Tools)
Issue Type: Task
Components: jsp/jsf/xml/html-source-editing
Affects Versions: 4.4.0.Alpha1
Environment: Mac OS X
Reporter: Denis Golovin
Fix For: 4.4.0.Alpha1
{code} KeyCombination[] keys = new KeyCombination[] {
new KeyCombination(SWT.CTRL, 'd'),
new KeyCombination(SWT.CTRL | SWT.ALT, 0x1000002), // Arrow Down
new KeyCombination(SWT.CTRL | SWT.ALT, 0x1000001), // Arrow UP
new KeyCombination(SWT.ALT, 0x1000001),
new KeyCombination(SWT.ALT, 0x1000002) };
{code}
Should use SWT.COMMAND instead SWT.CTRL on Mac OS X.