summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarolyn MacLeod <Carolyn_MacLeod@ca.ibm.com>2012-11-14 09:48:23 -0500
committerCarolyn MacLeod <Carolyn_MacLeod@ca.ibm.com>2012-11-14 09:48:23 -0500
commitbc7e1bc085c7d5faaae0b0da826b492f201e635a (patch)
treede710b66270c89f0026d3d648678c1781657cd1e
parent7d46d43cd21b835d179c72bde7bab59e61f13803 (diff)
downloadeclipse.platform.swt-bc7e1bc085c7d5faaae0b0da826b492f201e635a.tar.gz
eclipse.platform.swt-bc7e1bc085c7d5faaae0b0da826b492f201e635a.tar.xz
eclipse.platform.swt-bc7e1bc085c7d5faaae0b0da826b492f201e635a.zip
Bug 394016 -Ctrl+PageDown doesn't work multiple times in Classic theme
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolder.java6
1 files changed, 3 insertions, 3 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 eedc76cbaf..0907b1b651 100644
--- 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
@@ -760,7 +760,7 @@ public boolean getBorderVisible() {
}
ToolBar getChevron() {
if (chevronTb == null) {
- chevronTb = new ToolBar(this, SWT.FLAT);
+ chevronTb = new ToolBar(this, SWT.FLAT | SWT.NO_FOCUS);
initAccessibleChevronTb();
addTabControl(chevronTb, SWT.TRAIL, -1, false);
}
@@ -2366,7 +2366,7 @@ void setButtonBounds(GC gc) {
Display display = getDisplay();
if (showMax) {
if (minMaxTb == null) {
- minMaxTb = new ToolBar(this, SWT.FLAT);
+ minMaxTb = new ToolBar(this, SWT.FLAT | SWT.NO_FOCUS);
initAccessibleMinMaxTb();
addTabControl(minMaxTb, SWT.TRAIL, 0, false);
}
@@ -2389,7 +2389,7 @@ void setButtonBounds(GC gc) {
// min button
if (showMin) {
if (minMaxTb == null) {
- minMaxTb = new ToolBar(this, SWT.FLAT);
+ minMaxTb = new ToolBar(this, SWT.FLAT | SWT.NO_FOCUS);
initAccessibleMinMaxTb();
addTabControl(minMaxTb, SWT.TRAIL, 0, false);
}