Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrey Loskutov2017-04-13 11:08:18 +0000
committerAndrey Loskutov2017-04-13 11:08:18 +0000
commit2b1ce323d22a7852f6ef7912944e153baba6adb1 (patch)
treeddccb8d61f320d0d71b5fdb3858cfa8b7b1a288d
parente3da830e77410671ff27ecfaf728c2717b64b18f (diff)
downloadeclipse.platform.ui-2b1ce323d22a7852f6ef7912944e153baba6adb1.tar.gz
eclipse.platform.ui-2b1ce323d22a7852f6ef7912944e153baba6adb1.tar.xz
eclipse.platform.ui-2b1ce323d22a7852f6ef7912944e153baba6adb1.zip
Bug 515192 - [regression] Ctrl+F6/F7/F8 tables show non functional emptyY20170413-1000
area and separator on top Change-Id: I607735524311ba59669dc00c3dd0a1c385f59315 Signed-off-by: Andrey Loskutov <loskutov@gmx.de>
-rw-r--r--bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/FilteredTableBaseHandler.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/FilteredTableBaseHandler.java b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/FilteredTableBaseHandler.java
index 9e248257e54..6c44f3c29f9 100644
--- a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/FilteredTableBaseHandler.java
+++ b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/FilteredTableBaseHandler.java
@@ -497,7 +497,7 @@ public abstract class FilteredTableBaseHandler extends AbstractHandler implement
}
protected Color getForeground(){
- return dialog.getDisplay().getSystemColor(SWT.COLOR_TITLE_FOREGROUND);
+ return dialog.getDisplay().getSystemColor(SWT.COLOR_LIST_FOREGROUND);
}
protected Color getBackground() {
return dialog.getDisplay().getSystemColor(SWT.COLOR_LIST_BACKGROUND);

Back to the top