Index: applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/MapillaryAbstractImage.java
===================================================================
--- applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/MapillaryAbstractImage.java	(revision 32076)
+++ applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/MapillaryAbstractImage.java	(revision 32078)
@@ -17,5 +17,5 @@
  *
  */
-public class MapillaryAbstractImage implements Comparable<MapillaryAbstractImage>{
+public class MapillaryAbstractImage implements Comparable<MapillaryAbstractImage> {
   /**
    * If two values for field ca differ by less than EPSILON both values are considered equal.
Index: applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/MapillaryLayer.java
===================================================================
--- applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/MapillaryLayer.java	(revision 32076)
+++ applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/MapillaryLayer.java	(revision 32078)
@@ -318,7 +318,16 @@
     }
     // Draw sequence line
-    g.setColor(Color.WHITE);
-    g.setStroke(new BasicStroke(this == Main.map.mapView.getActiveLayer() ? 3 : 1));
+    final MapillaryAbstractImage selectedImage = MapillaryLayer.getInstance().getData().getSelectedImage();
+    String selectedImageKey = null; // Intentionally not null to avoid null-check before .equals()
+    if (selectedImage != null && selectedImage.getSequence() != null) {
+      selectedImageKey = selectedImage.getSequence().getKey();
+    }
+    g.setStroke(new BasicStroke(this == Main.map.mapView.getActiveLayer() ? 3 : 2));
     for (MapillarySequence seq : getData().getSequences()) {
+      if (selectedImageKey != null && selectedImageKey.equals(seq.getKey())) {
+        g.setColor(Color.MAGENTA.brighter());
+      } else {
+        g.setColor(Color.WHITE);
+      }
       g.draw(MapViewGeometryUtil.getSequencePath(mv, seq));
     }
