Add icon to padding.

This commit is contained in:
Paulo Veiga
2011-09-02 18:25:34 -03:00
parent ba1a724df6
commit 001ff2e371
3 changed files with 12 additions and 12 deletions

View File

@@ -141,14 +141,18 @@ mindplot.IconGroup = new Class({
_resize : function(iconsLength) {
this._group.setSize(iconsLength * this._iconSize.width, this._iconSize.height);
this._group.setCoordSize(iconsLength * mindplot.Icon.HEIGHT, mindplot.Icon.HEIGHT);
var iconSize = mindplot.Icon.SIZE + (mindplot.IconGroup.ICON_PADDING * 2);
this._group.setCoordSize(iconsLength * iconSize, iconSize);
},
_positionIcon : function(icon, order) {
icon.getImage().setPosition(mindplot.Icon.HEIGHT * order, 0);
var iconSize = mindplot.Icon.SIZE + (mindplot.IconGroup.ICON_PADDING * 2);
icon.getImage().setPosition(iconSize * order + mindplot.IconGroup.ICON_PADDING, mindplot.IconGroup.ICON_PADDING);
}
});
mindplot.IconGroup.ICON_PADDING = 5;
mindplot.IconGroup.RemoveTip = new Class({
initialize : function(container) {