Browse Source

Pull request #2672: 无JIRA任务 布局优化

Merge in VISUAL/fineui from ~GUY/fineui:master to master

* commit '406b42e8d20cd8838194ed9d3aa4fa3251926de5':
  布局优化
es6
guy 2 years ago
parent
commit
e6f9452252
  1. 2
      src/core/wrapper/layout/layout.inline.js

2
src/core/wrapper/layout/layout.inline.js

@ -40,7 +40,7 @@ BI.InlineLayout = BI.inherit(BI.Layout, {
_addElement: function (i, item) {
var o = this.options;
var w = BI.InlineLayout.superclass._addElement.apply(this, arguments);
var columnSize = o.columnSize.length > 0 ? o.columnSize[i] : item.width >= 1 ? null : item.width;
var columnSize = o.columnSize.length > 0 ? o.columnSize[i] : item.width;
if (o.columnSize.length > 0) {
if (item.width >= 1 && o.columnSize[i] >= 1 && o.columnSize[i] !== item.width) {
columnSize = null;

Loading…
Cancel
Save