Index: /trunk/src/scriptbuilder/gui/ScriptBuilderFrame.java
===================================================================
--- /trunk/src/scriptbuilder/gui/ScriptBuilderFrame.java	(revision 132)
+++ /trunk/src/scriptbuilder/gui/ScriptBuilderFrame.java	(revision 139)
@@ -1676,4 +1676,8 @@
         txtIncidentLength.setText("0");
         incidentColorField.setBackground(Color.BLACK);
+        String colStr = "" + Integer.toHexString(Color.BLACK.getRed())
+                + Integer.toHexString(Color.BLACK.getGreen())
+                + Integer.toHexString(Color.BLACK.getBlue());
+        incidentColorField.setText(colStr);
         selectedColor = Color.BLACK;
         addIncidentDescription.setText("");
@@ -1810,4 +1814,8 @@
         //addIncidentLength.setValue(i.length / 60);
         incidentColorField.setBackground(i.color);
+        String colStr = "" + Integer.toHexString(i.color.getRed())
+                + Integer.toHexString(i.color.getGreen())
+                + Integer.toHexString(i.color.getBlue());
+        incidentColorField.setText(colStr);
         selectedColor = i.color;
         addIncidentDescription.setText(i.description);
@@ -2072,4 +2080,8 @@
             selectedColor = newColor;
             incidentColorField.setBackground(newColor);
+            String colStr = "" + Integer.toHexString(newColor.getRed())
+                    + Integer.toHexString(newColor.getGreen())
+                    + Integer.toHexString(newColor.getBlue());
+            incidentColorField.setText(colStr);
         }
         //Return focus to the properties frame
