Skip to content

Commit b4c89b6

Browse files
authored
Fix of c-smile#131
1 parent c0f0edb commit b4c89b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

samples/drag-n-drop-manager/ddm2.tis

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -451,7 +451,7 @@ function DragDrop2(def)
451451
case 8: dd_container.scrollTo(x, y - distance * AUTO_SCROLL_DELTA); break; // top
452452
case 2: dd_container.scrollTo(x, y + distance * AUTO_SCROLL_DELTA); break; // bottom
453453
case 4: dd_container.scrollTo(x - distance * AUTO_SCROLL_DELTA, y); break; // left
454-
case 2: dd_container.scrollTo(x + distance * AUTO_SCROLL_DELTA, y); break; // right
454+
case 6: dd_container.scrollTo(x + distance * AUTO_SCROLL_DELTA, y); break; // right
455455
}
456456
return true;
457457
}

0 commit comments

Comments
 (0)