Skip to content
Snippets Groups Projects
Commit 5b040787 authored by tcarver's avatar tcarver
Browse files

add HIGHLIGHT_BORDER_COLOUR

parent 1cc57f14
No related branches found
No related tags found
No related merge requests found
...@@ -38,6 +38,7 @@ public class SegmentBorder ...@@ -38,6 +38,7 @@ public class SegmentBorder
private int y; private int y;
private int width; private int width;
private int feature_direction; private int feature_direction;
public static Color HIGHLIGHT_BORDER_COLOUR = new Color(140,25,25);
/** /**
* Information stored in this object is used to draw the feature * Information stored in this object is used to draw the feature
...@@ -78,7 +79,7 @@ public class SegmentBorder ...@@ -78,7 +79,7 @@ public class SegmentBorder
if(highlight_segment) if(highlight_segment)
{ {
g2d.setColor(new Color(140,25,25)); g2d.setColor(HIGHLIGHT_BORDER_COLOUR);
g2d.setStroke(new BasicStroke(4.f)); g2d.setStroke(new BasicStroke(4.f));
} }
else else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment