Index: trunk/src/scriptbuilder/gui/ScriptBuilderFrame.java
===================================================================
--- trunk/src/scriptbuilder/gui/ScriptBuilderFrame.java	(revision 95)
+++ trunk/src/scriptbuilder/gui/ScriptBuilderFrame.java	(revision 98)
@@ -25,4 +25,5 @@
 import javax.swing.UIManager;
 import javax.swing.UnsupportedLookAndFeelException;
+import scriptbuilder.gui.panels.IncidentTimelinePanel;
 import scriptbuilder.structures.ScriptEvent;
 import scriptbuilder.structures.ScriptEvent.ScriptEventType;
@@ -333,4 +334,5 @@
         timeStampScrollPane = new javax.swing.JScrollPane();
         timeStampPanel = new scriptbuilder.gui.panels.TimeStampPanel();
+        btnAddTime = new javax.swing.JButton();
         scriptBuilderMenuBar = new javax.swing.JMenuBar();
         fileMenu = new javax.swing.JMenu();
@@ -1177,4 +1179,13 @@
         timeStampScrollPane.setViewportView(timeStampPanel);
 
+        btnAddTime.setText("+15:00");
+        btnAddTime.addActionListener(new java.awt.event.ActionListener()
+        {
+            public void actionPerformed(java.awt.event.ActionEvent evt)
+            {
+                btnAddTimeActionPerformed(evt);
+            }
+        });
+
         fileMenu.setText("File");
         fileMenu.setMargin(new java.awt.Insets(0, 10, 0, 10));
@@ -1400,5 +1411,5 @@
                     .addComponent(timeStampScrollPane)
                     .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
-                        .addGap(0, 597, Short.MAX_VALUE)
+                        .addGap(0, 604, Short.MAX_VALUE)
                         .addComponent(zoomOutIcon)
                         .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
@@ -1406,5 +1417,7 @@
                         .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                         .addComponent(zoomInIcon)
-                        .addGap(136, 136, 136)))
+                        .addGap(18, 18, 18)
+                        .addComponent(btnAddTime)
+                        .addGap(21, 21, 21)))
                 .addContainerGap())
         );
@@ -1416,5 +1429,6 @@
                     .addComponent(zoomOutIcon)
                     .addComponent(zoomSlider, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
-                    .addComponent(zoomInIcon))
+                    .addComponent(zoomInIcon)
+                    .addComponent(btnAddTime))
                 .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                 .addComponent(timeStampScrollPane, javax.swing.GroupLayout.PREFERRED_SIZE, 20, javax.swing.GroupLayout.PREFERRED_SIZE)
@@ -2025,4 +2039,10 @@
     }//GEN-LAST:event_deleteIncidentActionPerformed
 
+    private void btnAddTimeActionPerformed(java.awt.event.ActionEvent evt)//GEN-FIRST:event_btnAddTimeActionPerformed
+    {//GEN-HEADEREND:event_btnAddTimeActionPerformed
+        IncidentTimelinePanel.requestedScriptBuilderFillerTime += IncidentTimelinePanel.FILLER_INTERVAL_SECONDS;
+        this.update(script, script);
+    }//GEN-LAST:event_btnAddTimeActionPerformed
+
     /**
      * Read the version number from the application properties. The file
@@ -2116,4 +2136,5 @@
     private javax.swing.JSpinner addIncidentStart;
     private javax.swing.JFrame addNoiseFrame;
+    private javax.swing.JButton btnAddTime;
     private javax.swing.JMenuItem cadEvent;
     private javax.swing.JFrame cadEventFrame;
