summaryrefslogtreecommitdiffstats
path: root/src/gui/text/qtexthtmlparser.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/text/qtexthtmlparser.cpp')
-rw-r--r--src/gui/text/qtexthtmlparser.cpp8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/gui/text/qtexthtmlparser.cpp b/src/gui/text/qtexthtmlparser.cpp
index 769a50956c..5d5e2b659d 100644
--- a/src/gui/text/qtexthtmlparser.cpp
+++ b/src/gui/text/qtexthtmlparser.cpp
@@ -1252,13 +1252,9 @@ void QTextHtmlParserNode::applyCssDeclarations(const QVector<QCss::Declaration>
break;
case QCss::LineHeight: {
qreal lineHeight;
- if (decl.realValue(&lineHeight, "px"))
+ if (decl.realValue(&lineHeight, "px")) {
blockFormat.setLineHeight(lineHeight, QTextBlockFormat::FixedHeight);
- else if (decl.realValue(&lineHeight, "al"))
- blockFormat.setLineHeight(lineHeight, QTextBlockFormat::AtLeastHeight);
- else if (decl.realValue(&lineHeight, "ld"))
- blockFormat.setLineHeight(lineHeight, QTextBlockFormat::LineDistanceHeight);
- else {
+ } else {
bool ok;
QString value = decl.d->values.first().toString();
lineHeight = value.toDouble(&ok);