Index: /trunk/src/atmsdriver/trafficeventseditor/TrafficEventsEditor.java
===================================================================
--- /trunk/src/atmsdriver/trafficeventseditor/TrafficEventsEditor.java	(revision 255)
+++ /trunk/src/atmsdriver/trafficeventseditor/TrafficEventsEditor.java	(revision 257)
@@ -994,13 +994,19 @@
     private void addNewTimeFrameButtonClicked(java.awt.event.ActionEvent evt)//GEN-FIRST:event_addNewTimeFrameButtonClicked
     {//GEN-HEADEREND:event_addNewTimeFrameButtonClicked
+        // Show a dialog for the user to select a time in HH:MM:SS
+        TimeSelectionDialog dialog;
         // Obtain the time of the previous time frame
         int size = timeFrames.frames.size();
+        // if a previous frame exists, use its time for default dialog time
         if (timeFrames.frames.size() > 0)
         {
             String prevTime = timeFrames.frames.get(size-1).toString();
-        }
-        // Show a dialog for the user to select a time in HH:MM:SS
-        // TODO: this could be enhanced so it appears with previous time
-        TimeSelectionDialog dialog = new TimeSelectionDialog((JFrame)this, true);
+            dialog = new TimeSelectionDialog((JFrame)this, prevTime);
+        }
+        else  // start with no time default
+        {
+            dialog = new TimeSelectionDialog((JFrame)this);
+        }
+
         dialog.setLocation(200,400);
         dialog.setVisible(true);
Index: /trunk/src/tmcsim/application.properties
===================================================================
--- /trunk/src/tmcsim/application.properties	(revision 255)
+++ /trunk/src/tmcsim/application.properties	(revision 257)
@@ -1,5 +1,5 @@
-#Sun, 10 Feb 2019 13:07:36 -0800
+#Mon, 11 Feb 2019 11:45:31 -0800
 
-Application.revision=253
+Application.revision=255
 
-Application.buildnumber=91
+Application.buildnumber=92
Index: /trunk/IDE_metadata/NetBeans/TMCSim/nbproject/project.properties
===================================================================
--- /trunk/IDE_metadata/NetBeans/TMCSim/nbproject/project.properties	(revision 250)
+++ /trunk/IDE_metadata/NetBeans/TMCSim/nbproject/project.properties	(revision 257)
@@ -1,5 +1,5 @@
 #Fri Oct 06 15:14:08 PDT 2017
 excludes=
-file.reference.TimeSelector_r13.jar=../../../lib/TimeSelector_r13.jar
+file.reference.SimTimeSelector_r28.jar=../../../lib/SimTimeSelector_r28.jar
 file.reference.xercesImpl.jar=../../../lib/xercesImpl.jar
 javac.deprecation=false
@@ -74,5 +74,5 @@
     ${libs.junit_4.classpath}:\
     ${libs.absolutelayout.classpath}:\
-    ${file.reference.TimeSelector_r13.jar}
+    ${file.reference.SimTimeSelector_r28.jar}
 annotation.processing.enabled.in.editor=false
 build.generated.sources.dir=${build.dir}/generated-sources
