Index: /trunk/src/scriptbuilder/gui/panels/IncidentTimelinePanel.java
===================================================================
--- /trunk/src/scriptbuilder/gui/panels/IncidentTimelinePanel.java	(revision 155)
+++ /trunk/src/scriptbuilder/gui/panels/IncidentTimelinePanel.java	(revision 172)
@@ -218,5 +218,5 @@
                     {
                         int offset = Integer.parseInt(e.getActionCommand().substring(9,e.getActionCommand().length()));
-                        String addTimeInput = JOptionPane.showInputDialog("Add time(rounded to lowest 20s): ");
+                        String addTimeInput = JOptionPane.showInputDialog("Add time in seconds(this will be automatically rounded to lowest 20s): ");
                         int addTime = 0;
                         
@@ -241,5 +241,5 @@
                         //does addTime but with a negative time
                         int offset = Integer.parseInt(e.getActionCommand().substring(11,e.getActionCommand().length()).trim());
-                        String addTimeInput = JOptionPane.showInputDialog("Remove time(rounded to lowest 20s): ");
+                        String addTimeInput = JOptionPane.showInputDialog("Remove time in seconds(this will be automatically rounded to lowest 20s): ");
                         int addTime = 0;
                         
@@ -392,12 +392,6 @@
                             newSlice = 0;
                         }
-                        //add the time of addition to be passed through to the event itself somewhere in here? Stored in newSlice
+                        //creates a new script event
                         I_ScriptEvent newScriptEvent = ScriptEvent.factoryByType(incidentEditFrameCurrent.currentEventType);
-//                        if (editor != null)
-//                        {
-//                            //this is not necessary if we just load the slices after we create a new one in the window, creates some extra dummy slice for no reason.
-//                            //this adds a new event to the existing editor window
-//                            editor.addEvent(eventTypeToPropertyMap.get(incidentEditFrameCurrent.currentEventType), newScriptEvent);
-//                        }
                         if (incident.slices.get(newSlice) == null || incident.slices.get(newSlice).events.isEmpty())
                         {
