Index: trunk/src/scriptbuilder/gui/IncidentEditorFrame.java
===================================================================
--- trunk/src/scriptbuilder/gui/IncidentEditorFrame.java	(revision 104)
+++ trunk/src/scriptbuilder/gui/IncidentEditorFrame.java	(revision 107)
@@ -307,5 +307,9 @@
             public void windowClosing(WindowEvent e)
             {
-                theIncident.setOffset(savedOffset);
+                //Add previous offset back in
+                //If we didn't adjust the offset, this will just set it to the old value
+                //If we deleted the first event(s), this will add the offsets,
+                //to ensure that events stay at the correct times
+                theIncident.setOffset(theIncident.offset + savedOffset);
                 parent.returnFocus();
             }
