Browse Source

Pull request #3425: KERNEL-14215 fix:bi.icon_arrow_node组件文本消失的问题-bug26

Merge in VISUAL/fineui from ~VIVY.PAN/fineui:es6 to es6

* commit '91d9ec00b42422acac42f7c88b2187865ccace8f':
  KERNEL-14215 fix:bi.icon_arrow_node组件文本消失的问题-bug26
es6
Vivy.Pan-潘柯芋 2 years ago
parent
commit
50c67651df
  1. 13
      src/case/button/node/node.icon.arrow.js

13
src/case/button/node/node.icon.arrow.js

@ -51,6 +51,19 @@ export class IconArrowNode extends NodeButton {
iconHeight: o.iconHeight,
});
this.text = createWidget({
type: "bi.label",
textAlign: "left",
whiteSpace: "nowrap",
textHeight: o.height,
height: o.height,
hgap: o.hgap,
text: o.text,
value: o.value,
py: o.py,
keyword: o.keyword
});
createWidget({
type: Label.xtype,
textAlign: "left",

Loading…
Cancel
Save