e.getStatus().setStatus(false);
restoreTrackMouse = tree.isTrackMouseOver();
tree.setTrackMouseOver(false);
if (autoScroll) {
if (scrollSupport == null) {
El scroll = scrollElementId != null ? new El(DOM.getElementById(scrollElementId)) : tree.el();
scrollSupport = new ScrollSupport(scroll);
} else if (scrollSupport.getScrollElement() == null) {
El scroll = scrollElementId != null ? new El(DOM.getElementById(scrollElementId)) : tree.el();
scrollSupport.setScrollElement(scroll);
}
scrollSupport.start();
}
}