From 12c3c9ab4e0407eb766a29298a3473a4dd82c5cc Mon Sep 17 00:00:00 2001
From: tcarver <tjc>
Date: Thu, 4 Apr 2013 16:36:21 +0100
Subject: [PATCH] change colour order

---
 uk/ac/sanger/artemis/plot/LineAttributes.java | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/uk/ac/sanger/artemis/plot/LineAttributes.java b/uk/ac/sanger/artemis/plot/LineAttributes.java
index 256846a8d..81b7530de 100644
--- a/uk/ac/sanger/artemis/plot/LineAttributes.java
+++ b/uk/ac/sanger/artemis/plot/LineAttributes.java
@@ -151,13 +151,13 @@ public class LineAttributes
   public static LineAttributes[]  init(int numPlots)
   {
     final Color frameColour[] = { 
-        Color.red, 
-        new Color(0,200,0), 
+        Color.red,
         Color.blue,
+        Color.black,
+        new Color(0,200,0),
         Color.magenta,
         new Color(50, 255, 255),
-        Color.yellow,
-        Color.black };
+        Color.yellow };
     LineAttributes lines[] = new LineAttributes[numPlots];
     
     if(numPlots == 1)
-- 
GitLab