Index: /trunk/src/org/openstreetmap/josm/gui/dialogs/ValidatorDialog.java
===================================================================
--- /trunk/src/org/openstreetmap/josm/gui/dialogs/ValidatorDialog.java	(revision 14888)
+++ /trunk/src/org/openstreetmap/josm/gui/dialogs/ValidatorDialog.java	(revision 14889)
@@ -117,6 +117,22 @@
                         KeyEvent.VK_V, Shortcut.ALT_SHIFT), 150, false, ValidatorPreference.class);
 
+        Action removeProblemAction = new AbstractAction() {
+            {
+                putValue(NAME, tr("Remove"));
+                putValue(SHORT_DESCRIPTION, tr("Remove from tree."));
+                new ImageProvider("dialogs", "delete").getResource().attachImageIcon(this, true);
+            }
+
+            @Override
+            public void actionPerformed(ActionEvent e) {
+                TestError error = getSelectedError();
+                error.setIgnored(true);
+                tree.resetErrors();
+            }
+        };
+
         popupMenuHandler.addAction(MainApplication.getMenu().autoScaleActions.get("problem"));
         popupMenuHandler.addAction(new EditRelationAction());
+        popupMenuHandler.addAction(removeProblemAction);
 
         tree = new ValidatorTreePanel();
