From 97a41b8596ae0e71d8bcd2e1e9a98d21fe8e596c Mon Sep 17 00:00:00 2001 From: Carolyn MacLeod Date: Wed, 7 Jul 2010 14:32:20 +0000 Subject: Return the shortcut key for the whole tab folder, not just the tabs. --- .../common/org/eclipse/swt/custom/CTabFolder.java | 3 +++ 1 file changed, 3 insertions(+) (limited to 'bundles/org.eclipse.swt/Eclipse SWT Custom Widgets') diff --git a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolder.java b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolder.java index 6549c46628..beae03ed04 100755 --- a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolder.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolder.java @@ -1038,6 +1038,9 @@ void initAccessible() { } } } + if (childID == ACC.CHILDID_SELF) { + shortcut = "Ctrl+PageDown"; //$NON-NLS-1$ + } e.result = shortcut; } }); -- cgit