[DE mobile] Fix for rev.2592bffef1df37996f8d521ba247d2fa277b2a62 ( 13 марта 2019 г. 13:59:41 [de] Add edit of first line of the paragraph)

This commit is contained in:
Julia Radzhabova 2019-04-24 11:37:57 +03:00
parent ca18865431
commit ca019edff5

View file

@ -255,6 +255,11 @@ define([
} else { } else {
distance = Math.min(100, ++distance); distance = Math.min(100, ++distance);
} }
_paragraphInfo.spaceAfter = distance;
$('#paragraph-distance-after .item-after label').text(_paragraphInfo.spaceAfter < 0 ? 'Auto' : (_paragraphInfo.spaceAfter) + ' ' + metricText);
this.api.put_LineSpacingBeforeAfter(1, (_paragraphInfo.spaceAfter < 0) ? -1 : Common.Utils.Metric.fnRecalcToMM(_paragraphInfo.spaceAfter));
}, },
onSpinFirstLine: function(e) { onSpinFirstLine: function(e) {