Index: applications/editors/josm/plugins/infomode/src/org/openstreetmap/josm/plugins/infomode/InfoPanel.java
===================================================================
--- applications/editors/josm/plugins/infomode/src/org/openstreetmap/josm/plugins/infomode/InfoPanel.java	(revision 26605)
+++ applications/editors/josm/plugins/infomode/src/org/openstreetmap/josm/plugins/infomode/InfoPanel.java	(revision 27426)
@@ -37,6 +37,6 @@
     private JLabel label5=new JLabel();
     private JLabel label6=new JLabel();
-    private JButton but1 = new JButton(tr("Hide this"));
-    private JButton but2 = new JButton(tr("Hide this&older"));
+    private JButton but1 = new JButton(tr("Delete this"));
+    private JButton but2 = new JButton(tr("Delete this&older"));
     
     public InfoPanel() {
@@ -101,6 +101,10 @@
         this.tracks=tracks;
         this.trk=trk;
-        if (wp.time==0.0)  label1.setText(tr("No timestamp"));
-        else label1.setText(df.format(wp.getTime()));
+        if (wp.time==0.0) { label1.setText(tr("No timestamp"));
+            but2.setVisible(false);
+        } else {
+            label1.setText(df.format(wp.getTime()));
+            but2.setVisible(true);
+        }
         if (vel>0) label2.setText(String.format("%.1f "+tr("km/h"), vel));
               else label2.setText(null);
