Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHenrik Rentz-Reichert2011-06-12 07:21:56 +0000
committerHenrik Rentz-Reichert2011-06-12 07:21:56 +0000
commitbe711a06c5440e0787433489796c170650a045b4 (patch)
tree3c8cb316e7a557b9e8aa703c2df610b415d95c02 /plugins/org.eclipse.etrice.ui.structure
parentd0d60994192dea60b8fda36fb2148b42ea558006 (diff)
downloadorg.eclipse.etrice-be711a06c5440e0787433489796c170650a045b4.tar.gz
org.eclipse.etrice-be711a06c5440e0787433489796c170650a045b4.tar.xz
org.eclipse.etrice-be711a06c5440e0787433489796c170650a045b4.zip
[ui.behavior/structure] 349087: Transition Points will not be marked
as selected https://bugs.eclipse.org/bugs/show_bug.cgi?id=349087 setting primary and secondary selection color to light orange
Diffstat (limited to 'plugins/org.eclipse.etrice.ui.structure')
-rw-r--r--plugins/org.eclipse.etrice.ui.structure/src/org/eclipse/etrice/ui/structure/ProviderDispatcher.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/org.eclipse.etrice.ui.structure/src/org/eclipse/etrice/ui/structure/ProviderDispatcher.java b/plugins/org.eclipse.etrice.ui.structure/src/org/eclipse/etrice/ui/structure/ProviderDispatcher.java
index b65fc3bc5..6f978e306 100644
--- a/plugins/org.eclipse.etrice.ui.structure/src/org/eclipse/etrice/ui/structure/ProviderDispatcher.java
+++ b/plugins/org.eclipse.etrice.ui.structure/src/org/eclipse/etrice/ui/structure/ProviderDispatcher.java
@@ -391,8 +391,8 @@ public class ProviderDispatcher {
public ISelectionInfo getSelectionInfoForShape(Shape shape) {
ISelectionInfo si = new SelectionInfoImpl(IColorConstant.SHAPE_SELECTION_FG, IColorConstant.HANDLE_FG, IColorConstant.HANDLE_BG,
LineStyle.DASH);
-// si.setPrimarySelectionBackgroundColor(IColorConstant.LIGHT_GRAY);
-// si.setSecondarySelectionBackgroundColor(IColorConstant.LIGHT_GRAY);
+ si.setPrimarySelectionBackgroundColor(IColorConstant.LIGHT_ORANGE);
+ si.setSecondarySelectionBackgroundColor(IColorConstant.LIGHT_ORANGE);
return si;
}
}

Back to the top