Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLaurent Fasani2018-01-26 16:53:59 +0000
committerLaurent Fasani2018-01-30 14:26:41 +0000
commit25af397e492e392f6cd8dfefa99501335bf350e4 (patch)
treee5992eb353236087bc295efa11705f5bc0de293c
parent61f47561c2b45225bf5e4051b22355b609b48a47 (diff)
downloadorg.eclipse.sirius-25af397e492e392f6cd8dfefa99501335bf350e4.tar.gz
org.eclipse.sirius-25af397e492e392f6cd8dfefa99501335bf350e4.tar.xz
org.eclipse.sirius-25af397e492e392f6cd8dfefa99501335bf350e4.zip
[522620] Fix tooltip regression in treeviewer
* Change the code back so that the tooltip on element in model explorer is provided by org.eclipse.sirius.ext.jface.viewers.IToolTipProvider and not org.eclipse.jface.viewers.IToolTipProvider * Reactivate a test that has been deactivated by mistake. Bug:522620 Change-Id: Ic90087f10354fe19fa9ddd60914d4488c04f1e0e Signed-off-by: Laurent Fasani <laurent.fasani@obeo.fr>
-rw-r--r--plugins/org.eclipse.sirius.ui/src/org/eclipse/sirius/ui/tools/internal/views/modelexplorer/TooltipAwareNavigatorDecoratingLabelProvider.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/org.eclipse.sirius.ui/src/org/eclipse/sirius/ui/tools/internal/views/modelexplorer/TooltipAwareNavigatorDecoratingLabelProvider.java b/plugins/org.eclipse.sirius.ui/src/org/eclipse/sirius/ui/tools/internal/views/modelexplorer/TooltipAwareNavigatorDecoratingLabelProvider.java
index 98b9a66d82..f58d9d4b0a 100644
--- a/plugins/org.eclipse.sirius.ui/src/org/eclipse/sirius/ui/tools/internal/views/modelexplorer/TooltipAwareNavigatorDecoratingLabelProvider.java
+++ b/plugins/org.eclipse.sirius.ui/src/org/eclipse/sirius/ui/tools/internal/views/modelexplorer/TooltipAwareNavigatorDecoratingLabelProvider.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2015, 2017 Obeo.
+ * Copyright (c) 2015, 2018 Obeo.
* 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
@@ -12,7 +12,7 @@ package org.eclipse.sirius.ui.tools.internal.views.modelexplorer;
import org.eclipse.core.runtime.Platform;
import org.eclipse.jface.viewers.ILabelProvider;
-import org.eclipse.jface.viewers.IToolTipProvider;
+import org.eclipse.sirius.ext.jface.viewers.IToolTipProvider;
import org.eclipse.ui.internal.navigator.NavigatorDecoratingLabelProvider;
/**

Back to the top