Commit b9132e4f authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Qt4: retain newlines in config item long text

parent 1d4ad4ac
...@@ -58,6 +58,9 @@ ...@@ -58,6 +58,9 @@
QString formatTooltip(const QString & tooltip) QString formatTooltip(const QString & tooltip)
{ {
QString text = tooltip;
text.replace("\n", "<br/>");
QString formatted = QString formatted =
"<html><head><meta name=\"qrichtext\" content=\"1\" />" "<html><head><meta name=\"qrichtext\" content=\"1\" />"
"<style type=\"text/css\"> p, li { white-space: pre-wrap; } </style></head>" "<style type=\"text/css\"> p, li { white-space: pre-wrap; } </style></head>"
...@@ -65,8 +68,7 @@ QString formatTooltip(const QString & tooltip) ...@@ -65,8 +68,7 @@ QString formatTooltip(const QString & tooltip)
"font-style:normal; text-decoration:none;\">" "font-style:normal; text-decoration:none;\">"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; " "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; "
"margin-right:0px; -qt-block-indent:0; text-indent:0px;\">" + "margin-right:0px; -qt-block-indent:0; text-indent:0px;\">" +
tooltip + text + "</p></body></html>";
"</p></body></html>";
return formatted; return formatted;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment