Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Obuchowicz2019-06-26 18:43:45 +0000
committerAndrew Obuchowicz2019-06-26 18:43:45 +0000
commit243571596458dec44567fd8aa82b9514f61cfa66 (patch)
treed8e3e0d1f901233b670ff75d209f8e6cacf09e11
parentaec1476ad5841a388ad9df1df307f7469f183ca8 (diff)
downloadeclipse.platform.debug-Y20190627-0630.tar.gz
eclipse.platform.debug-Y20190627-0630.tar.xz
eclipse.platform.debug-Y20190627-0630.zip
Bug 548344 - Remove Tab Support for environment inline editingY20190628-1440Y20190627-0630I20190627-1800
Patch ready for review. Change-Id: I1b36ae797264e38a9cae67529ec803fd6c875524 Signed-off-by: Andrew Obuchowicz <aobuchow@redhat.com>
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/EnvironmentTab.java6
1 files changed, 1 insertions, 5 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/EnvironmentTab.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/EnvironmentTab.java
index 4c112ad4b..c320462e3 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/EnvironmentTab.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/EnvironmentTab.java
@@ -55,7 +55,6 @@ import org.eclipse.jface.dialogs.MessageDialog;
import org.eclipse.jface.layout.PixelConverter;
import org.eclipse.jface.layout.TableColumnLayout;
import org.eclipse.jface.viewers.ColumnLabelProvider;
-import org.eclipse.jface.viewers.ColumnViewerEditor;
import org.eclipse.jface.viewers.ColumnViewerEditorActivationEvent;
import org.eclipse.jface.viewers.ColumnViewerEditorActivationStrategy;
import org.eclipse.jface.viewers.ColumnWeightData;
@@ -406,10 +405,7 @@ public class EnvironmentTab extends AbstractLaunchConfigurationTab {
}
};
- int feature = ColumnViewerEditor.TABBING_HORIZONTAL | ColumnViewerEditor.TABBING_MOVE_TO_ROW_NEIGHBOR
- | ColumnViewerEditor.TABBING_VERTICAL | ColumnViewerEditor.KEYBOARD_ACTIVATION;
-
- TableViewerEditor.create(environmentTable, actSupport, feature);
+ TableViewerEditor.create(environmentTable, actSupport, SWT.NONE);
// Setup environment variable name column
final TableViewerColumn tcv1 = new TableViewerColumn(environmentTable, SWT.NONE, 0);

Back to the top