Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Graphics
Okular
Commits
3400e8ae
Commit
3400e8ae
authored
Jan 04, 2022
by
Yuri Chornoivan
Committed by
Albert Astals Cid
Jan 04, 2022
Browse files
Remove extra spaces in FB2 paragraphs
BUG: 359059
parent
11448b94
Pipeline
#118406
passed with stage
in 6 minutes and 21 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
generators/fictionbook/converter.cpp
View file @
3400e8ae
...
...
@@ -554,7 +554,7 @@ bool Converter::convertParagraph(const QDomElement &element)
}
}
else
if
(
child
.
isText
())
{
const
QDomText
childText
=
child
.
toText
();
mCursor
->
insertText
(
childText
.
data
());
mCursor
->
insertText
(
childText
.
data
()
.
simplified
()
);
}
child
=
child
.
nextSibling
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment