Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrey Loskutov2016-05-08 06:09:54 +0000
committerDani Megert2016-05-10 11:05:15 +0000
commit0277b09528f8d95c3a353ffa9e1dc9e5ae23d6cd (patch)
treee95697d273f45defb5bec24ab724c5762f5dc291
parent04922f28f711de8f03b5b08a79d90b2eaa080325 (diff)
downloadeclipse.platform.ui-0277b09528f8d95c3a353ffa9e1dc9e5ae23d6cd.tar.gz
eclipse.platform.ui-0277b09528f8d95c3a353ffa9e1dc9e5ae23d6cd.tar.xz
eclipse.platform.ui-0277b09528f8d95c3a353ffa9e1dc9e5ae23d6cd.zip
Bug 493138 - CPD: items on 'Available action sets' column must not be
rendered in disabled color This change only affects the left column ('Available action sets') on the 'Action Set Availability' tab in the "Customize Perspective" Dialog - all elements are shown now in same standard color, independently from their availability. Change-Id: Id2609ef49f0bbc9f9ab72c77b0f8b25ac9d03335 Signed-off-by: Andrey Loskutov <loskutov@gmx.de>
-rw-r--r--bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/cpd/CustomizePerspectiveDialog.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/cpd/CustomizePerspectiveDialog.java b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/cpd/CustomizePerspectiveDialog.java
index d91fc3b38d8..ec5088214ec 100644
--- a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/cpd/CustomizePerspectiveDialog.java
+++ b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/cpd/CustomizePerspectiveDialog.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2015 IBM Corporation and others.
+ * Copyright (c) 2000, 2016 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -800,7 +800,6 @@ public class CustomizePerspectiveDialog extends TrayDialog {
actionSetAvailabilityTable = actionSetsViewer;
actionSetsViewer.getTable().setLayoutData(
new GridData(SWT.FILL, SWT.FILL, true, true));
- actionSetsViewer.setLabelProvider(new GrayOutUnavailableLabelProvider(null));
actionSetsViewer.setContentProvider(new ArrayContentProvider());
actionSetsViewer.setComparator(new WorkbenchViewerComparator());
actionSetsViewer.setCheckStateProvider(new ICheckStateProvider() {

Back to the top