File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
aztec/src/main/kotlin/org/wordpress/aztec/spans Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ open class AztecPreformatSpan(
8080 fm.ascent - = preformatStyle.verticalPadding
8181 fm.top - = preformatStyle.verticalPadding
8282
83- if (! isLastLine){
83+ if (! isLastLine) {
8484 fm.descent = originalDescent
8585 fm.bottom = originalBottom
8686 }
@@ -89,7 +89,7 @@ open class AztecPreformatSpan(
8989 fm.descent + = preformatStyle.verticalPadding
9090 fm.bottom + = preformatStyle.verticalPadding
9191
92- if (! isFirstLine){
92+ if (! isFirstLine) {
9393 fm.ascent = originalAscent
9494 fm.top = originalTop
9595 }
Original file line number Diff line number Diff line change @@ -110,7 +110,7 @@ open class AztecQuoteSpan(
110110 fm.ascent - = quoteStyle.verticalPadding
111111 fm.top - = quoteStyle.verticalPadding
112112
113- if (! isLastLine){
113+ if (! isLastLine) {
114114 fm.descent = originalDescent
115115 fm.bottom = originalBottom
116116 }
@@ -119,7 +119,7 @@ open class AztecQuoteSpan(
119119 fm.descent + = quoteStyle.verticalPadding
120120 fm.bottom + = quoteStyle.verticalPadding
121121
122- if (! isFirstLine){
122+ if (! isFirstLine) {
123123 fm.ascent = originalAscent
124124 fm.top = originalTop
125125 }
You can’t perform that action at this time.
0 commit comments