tooltip not works with "icon" widget @webix v2.3.1 Pro

Please help to fix it, thanks!

Regression will be fixed in the next build.
For now, you can add the next code on the page

webix.protoUI({
  name:"icon",
  tooltip_setter: function(value){
	var box = this.$view.firstChild;
	if(box)
		box.title = value; 
	return value;
  }
}, webix.ui.icon);

http://webix.com/snippet/85b23d96

Thanks!