diff --git a/src/case/button/item.multiselect.js b/src/case/button/item.multiselect.js index 0bd077f06..965363418 100644 --- a/src/case/button/item.multiselect.js +++ b/src/case/button/item.multiselect.js @@ -30,8 +30,8 @@ BI.MultiSelectItem = BI.inherit(BI.BasicButton, { whiteSpace: "nowrap", textHeight: o.height, height: o.height, - hgap: o.textHgap, - rgap: o.textRgap, + hgap: o.hgap, + rgap: o.rgap, lgap: o.textLgap, text: o.text, keyword: o.keyword, diff --git a/src/case/button/item.singleselect.radio.js b/src/case/button/item.singleselect.radio.js index 21b9ad155..5821f4124 100644 --- a/src/case/button/item.singleselect.radio.js +++ b/src/case/button/item.singleselect.radio.js @@ -12,6 +12,7 @@ BI.SingleSelectRadioItem = BI.inherit(BI.BasicButton, { }, height: 24, iconWrapperWidth: 26, + hgap: 10, textHgap: 0, textLgap: 0, textRgap: 0 @@ -30,7 +31,7 @@ BI.SingleSelectRadioItem = BI.inherit(BI.BasicButton, { whiteSpace: "nowrap", textHeight: o.height, height: o.height, - hgap: o.textHgap, + hgap: o.hgap, rgap: o.textRgap, lgap: o.textLgap, text: o.text,