0
[Comment by admin] The issue has been resolved since v.2012.11.11.
We have a solution that will be available in the next release of Menucool Tooltip (scheduled to be released out before November 11, 2012).
What we will do in the solution is:
var noBubble = function (e) {
if (e && e.stopPropagation)
e.stopPropagation();
else
window.event.cancelBubble = true;
};
theSelectElm.onmouseout = noBubble;