Fix Bug №47943
This commit is contained in:
parent
9b16457b17
commit
62fe865699
|
@ -198,9 +198,9 @@ class EditTextController extends Component {
|
||||||
let spacing = curSpacing;
|
let spacing = curSpacing;
|
||||||
|
|
||||||
if (isDecrement) {
|
if (isDecrement) {
|
||||||
spacing = (spacing === null || spacing === undefined) ? 0 : Math.max(-100, --spacing);
|
spacing = (spacing === null || spacing === undefined || spacing === NaN) ? 0 : Math.max(-100, --spacing);
|
||||||
} else {
|
} else {
|
||||||
spacing = (spacing === null || spacing === undefined) ? 0 : Math.min(100, ++spacing);
|
spacing = (spacing === null || spacing === undefined || spacing === NaN) ? 0 : Math.min(100, ++spacing);
|
||||||
}
|
}
|
||||||
|
|
||||||
const properties = new Asc.asc_CParagraphProperty();
|
const properties = new Asc.asc_CParagraphProperty();
|
||||||
|
|
|
@ -327,13 +327,13 @@ const PageAdditionalFormatting = props => {
|
||||||
</List>
|
</List>
|
||||||
<List>
|
<List>
|
||||||
<ListItem title={_t.textLetterSpacing}>
|
<ListItem title={_t.textLetterSpacing}>
|
||||||
{!isAndroid && <div slot='after-start'>{letterSpacing + ' ' + Common.Utils.Metric.getCurrentMetricName()}</div>}
|
{!isAndroid && <div slot='after-start'>{Number(letterSpacing).toFixed(2) + ' ' + Common.Utils.Metric.getCurrentMetricName()}</div>}
|
||||||
<div slot='after'>
|
<div slot='after'>
|
||||||
<Segmented>
|
<Segmented>
|
||||||
<Button outline className='decrement item-link' onClick={() => {props.changeLetterSpacing(letterSpacing, true)}}>
|
<Button outline className='decrement item-link' onClick={() => {props.changeLetterSpacing(letterSpacing, true)}}>
|
||||||
{isAndroid ? <Icon icon="icon-expand-down"></Icon> : ' - '}
|
{isAndroid ? <Icon icon="icon-expand-down"></Icon> : ' - '}
|
||||||
</Button>
|
</Button>
|
||||||
{isAndroid && <label>{letterSpacing + ' ' + Common.Utils.Metric.getCurrentMetricName()}</label>}
|
{isAndroid && <label>{Number(letterSpacing).toFixed(2) + ' ' + Common.Utils.Metric.getCurrentMetricName()}</label>}
|
||||||
<Button outline className='increment item-link' onClick={() => {props.changeLetterSpacing(letterSpacing, false)}}>
|
<Button outline className='increment item-link' onClick={() => {props.changeLetterSpacing(letterSpacing, false)}}>
|
||||||
{isAndroid ? <Icon icon="icon-expand-up"></Icon> : ' + '}
|
{isAndroid ? <Icon icon="icon-expand-up"></Icon> : ' + '}
|
||||||
</Button>
|
</Button>
|
||||||
|
|
Loading…
Reference in a new issue