https://bugs.kde.org/show_bug.cgi?id=360918

--- Comment #1 from strag <strag1...@mail.ru> ---
I seem to have solved the problem. The placemark description is displayed using
HTML. To preserve the original text formatting should be added the tags <pre>
and </pre>:

QString text = "<pre>";     //added tag <pre>
text += "string 1, \n";
text += "string 2, \n";
text += "string 3 \n";
text += "</pre>";              //added tag </pre>

As I understand it, it is necessary to add a "framing" of text by tags to
function setDescription(QString). I never participated in opensource projects,
so maybe someone can fix it before I'll understand how it's done.

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to