Index: trunk/src/org/openstreetmap/josm/gui/conflict/pair/tags/TagMerger.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/conflict/pair/tags/TagMerger.java	(revision 5931)
+++ trunk/src/org/openstreetmap/josm/gui/conflict/pair/tags/TagMerger.java	(revision 5932)
@@ -231,4 +231,7 @@
     }
 
+    /**
+     * Constructs a new {@code TagMerger}.
+     */
     public TagMerger() {
         model = new TagMergeModel();
@@ -424,6 +427,8 @@
     public void populate(Conflict<? extends OsmPrimitive> conflict) {
         model.populate(conflict.getMy(), conflict.getTheir());
-        mineTable.getSelectionModel().setSelectionInterval(0, 0);
-        theirTable.getSelectionModel().setSelectionInterval(0, 0);
+        for (JTable table : new JTable[]{mineTable, theirTable}) {
+            int index = table.getRowCount() > 0 ? 0 : -1;
+            table.getSelectionModel().setSelectionInterval(index, index);
+        }
     }
 }
