summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets
diff options
context:
space:
mode:
authorCarolyn MacLeod <carolyn>2010-07-07 14:32:20 +0000
committerCarolyn MacLeod <carolyn>2010-07-07 14:32:20 +0000
commit97a41b8596ae0e71d8bcd2e1e9a98d21fe8e596c (patch)
tree732a34665d7d04e34ce7176c566e007e22511363 /bundles/org.eclipse.swt/Eclipse SWT Custom Widgets
parent8a32ca22ea1e6c073a51dbed509eef6de8beae85 (diff)
downloadeclipse.platform.swt-97a41b8596ae0e71d8bcd2e1e9a98d21fe8e596c.tar.gz
eclipse.platform.swt-97a41b8596ae0e71d8bcd2e1e9a98d21fe8e596c.tar.xz
eclipse.platform.swt-97a41b8596ae0e71d8bcd2e1e9a98d21fe8e596c.zip
Return the shortcut key for the whole tab folder, not just the tabs.
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT Custom Widgets')
-rwxr-xr-xbundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolder.java3
1 files changed, 3 insertions, 0 deletions
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;
}
});