### Eclipse Workspace Patch 1.0
#P drupal 7
Index: misc/tabledrag.js
===================================================================
RCS file: /cvs/drupal/drupal/misc/tabledrag.js,v
retrieving revision 1.35
diff -u -r1.35 tabledrag.js
--- misc/tabledrag.js	10 Mar 2010 20:31:59 -0000	1.35
+++ misc/tabledrag.js	26 Mar 2010 17:53:10 -0000
@@ -516,7 +516,7 @@
  *   The y coordinate of the mouse on the page (not the screen).
  */
 Drupal.tableDrag.prototype.findDropTargetRow = function (x, y) {
-  var rows = this.table.tBodies[0].rows;
+  var rows = $(this.table.tBodies[0].rows).not(':hidden');
   for (var n = 0; n < rows.length; n++) {
     var row = rows[n];
     var indentDiff = 0;
