diff --git a/lib/timeline/component/ItemSet.js b/lib/timeline/component/ItemSet.js index 9e683e55..ca3d4005 100644 --- a/lib/timeline/component/ItemSet.js +++ b/lib/timeline/component/ItemSet.js @@ -2317,7 +2317,7 @@ ItemSet.prototype.groupFromTarget = function(event) { var group = this.groups[groupId]; var foreground = group.dom.foreground; var top = util.getAbsoluteTop(foreground); - if (clientY > top && clientY < top + foreground.offsetHeight) { + if (clientY >= top && clientY < top + foreground.offsetHeight) { return group; }