Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrik Suzzi2019-05-19 12:31:27 +0000
committerPatrik Suzzi2019-05-19 12:31:27 +0000
commit81f7177bb02c641f65fe583fbc15493b9031207c (patch)
tree185ddd98ac2b37867904a53fe9e96efb78c8a183
parentd0aab09ed76e942209d59d7243ff15a024c83548 (diff)
downloadeclipse.platform.ui-81f7177bb02c641f65fe583fbc15493b9031207c.tar.gz
eclipse.platform.ui-81f7177bb02c641f65fe583fbc15493b9031207c.tar.xz
eclipse.platform.ui-81f7177bb02c641f65fe583fbc15493b9031207c.zip
Bug 540792 - Quick switch editor (Ctrl+E) popup is too wide
Editor reverted back to not display the path of the resource. Change-Id: I0af1c10ffcdce767faacc50df7587218727e25bd Signed-off-by: Patrik Suzzi <psuzzi@itemis.com>
-rw-r--r--bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbookEditorsHandler.java11
1 files changed, 0 insertions, 11 deletions
diff --git a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbookEditorsHandler.java b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbookEditorsHandler.java
index a87fb8428ee..0adfccc1d4d 100644
--- a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbookEditorsHandler.java
+++ b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbookEditorsHandler.java
@@ -164,17 +164,6 @@ public class WorkbookEditorsHandler extends FilteredTableBaseHandler {
ColumnViewerToolTipSupport.enableFor(tableViewerColumn.getViewer());
}
- /** Extends generated label adding the resource path for duplicates */
- @Override
- protected String getWorkbenchPartReferenceText(WorkbenchPartReference ref) {
- StringBuilder str = new StringBuilder(super.getWorkbenchPartReferenceText(ref));
- if (ref instanceof EditorReference) {
- str.append(" - "); //$NON-NLS-1$
- str.append(ref.getTitleToolTip());
- }
- return str.toString();
- }
-
/** True if the given model represents the active editor */
protected boolean isActiveEditor(MPart model) {
if (model == null || model.getTags() == null) {

Back to the top