Index: trunk/src/event/editor/CADLogPanel.java
===================================================================
--- trunk/src/event/editor/CADLogPanel.java	(revision 89)
+++ trunk/src/event/editor/CADLogPanel.java	(revision 92)
@@ -10,5 +10,5 @@
  * @author nathaniellehrer
  */
-public class CADLogPanel extends javax.swing.JPanel implements RemoveablePanel, ScriptEventEditorPanel
+public class CADLogPanel extends javax.swing.JPanel implements I_ScriptEventEditorPanel
 {
 
@@ -23,10 +23,4 @@
         initComponents();
     }
-
-    public void setRemoveListener(ActionListener listener)
-    {
-        removeListener = listener;
-    }
-
     /**
      * Load the script event associated with this editor panel.
@@ -60,4 +54,5 @@
     }
 
+    @Override
     public void update(Observable o, Object arg)
     {
@@ -83,17 +78,7 @@
     {
 
-        removeButton = new javax.swing.JButton();
         jLabel1 = new javax.swing.JLabel();
         jScrollPane1 = new javax.swing.JScrollPane();
         CadTextField = new javax.swing.JTextArea();
-
-        removeButton.setText("Remove");
-        removeButton.addMouseListener(new java.awt.event.MouseAdapter()
-        {
-            public void mouseClicked(java.awt.event.MouseEvent evt)
-            {
-                removeButtonremoveThisProperty(evt);
-            }
-        });
 
         jLabel1.setText("Cad Log Text");
@@ -113,6 +98,5 @@
                     .add(layout.createSequentialGroup()
                         .add(jLabel1)
-                        .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED, 330, Short.MAX_VALUE)
-                        .add(removeButton)))
+                        .add(0, 0, Short.MAX_VALUE)))
                 .addContainerGap())
         );
@@ -120,8 +104,6 @@
             layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
             .add(layout.createSequentialGroup()
-                .addContainerGap()
-                .add(layout.createParallelGroup(org.jdesktop.layout.GroupLayout.TRAILING)
-                    .add(removeButton)
-                    .add(jLabel1))
+                .add(19, 19, 19)
+                .add(jLabel1)
                 .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED)
                 .add(jScrollPane1, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, 120, Short.MAX_VALUE)
@@ -130,11 +112,4 @@
     }// </editor-fold>//GEN-END:initComponents
 
-    private void removeButtonremoveThisProperty(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_removeButtonremoveThisProperty
-        if (removeListener != null)
-        {
-            removeListener.actionPerformed(new ActionEvent(this, 0, ""));
-        }
-}//GEN-LAST:event_removeButtonremoveThisProperty
-
 
     // Variables declaration - do not modify//GEN-BEGIN:variables
@@ -142,5 +117,4 @@
     private javax.swing.JLabel jLabel1;
     private javax.swing.JScrollPane jScrollPane1;
-    private javax.swing.JButton removeButton;
     // End of variables declaration//GEN-END:variables
 
