Index: trunk/src/org/openstreetmap/josm/gui/conflict/tags/RelationMemberConflictDecisionEditor.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/conflict/tags/RelationMemberConflictDecisionEditor.java	(revision 9142)
+++ trunk/src/org/openstreetmap/josm/gui/conflict/tags/RelationMemberConflictDecisionEditor.java	(revision 9143)
@@ -3,4 +3,6 @@
 
 import java.awt.Component;
+import java.awt.event.ActionEvent;
+import java.awt.event.ActionListener;
 import java.util.EventObject;
 
@@ -12,5 +14,12 @@
 import org.openstreetmap.josm.gui.widgets.JosmComboBox;
 
+/**
+ * Table cell editor for relation member conflict resolver table.
+ * @since 2070
+ */
 public class RelationMemberConflictDecisionEditor extends JosmComboBox<RelationMemberConflictDecisionType> implements TableCellEditor {
+
+    private final transient CellEditorSupport tableCellEditorSupport;
+    private RelationMemberConflictDecisionType originalValue;
 
     /**
@@ -29,11 +38,14 @@
     @Override
     public Component getTableCellEditorComponent(JTable table, Object value, boolean isSelected, int row, int column) {
+        addActionListener(new ActionListener() {
+            @Override
+            public void actionPerformed(ActionEvent e) {
+                stopCellEditing();
+            }
+        });
         setSelectedItem(value);
         this.originalValue = (RelationMemberConflictDecisionType) value;
         return this;
     }
-
-    private final transient CellEditorSupport tableCellEditorSupport;
-    private RelationMemberConflictDecisionType originalValue;
 
     @Override
