Call resize handler of widgets with no excess_height which means resize is from nm

This commit is contained in:
Hadi Nategh 2015-05-08 13:41:17 +00:00
parent dd81c12dd9
commit d95b5b9e3d

View File

@ -155,7 +155,7 @@ etemplate2.prototype.resize = function(e)
// "IResizeable" interface // "IResizeable" interface
self.widgetContainer.iterateOver(function(_widget) { self.widgetContainer.iterateOver(function(_widget) {
if (excess_height != 0) _widget.resize(excess_height); if (excess_height != 0 || excess_height === false) _widget.resize(excess_height);
}, self, et2_IResizeable); }, self, et2_IResizeable);
} }
},100); },100);