mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-02-13 16:18:42 +00:00
Map newlines to html <br> tags on CloudDB chart descriptions
When displayed on tableWidget, newlines are already preserved across cloudDB interactions. Fixes #3286
This commit is contained in:
@@ -1197,6 +1197,9 @@ CloudDBChartListDialog::encodeHTML ( const QString& encodeMe )
|
||||
case '>':
|
||||
temp += ">"; break;
|
||||
|
||||
case '\n':
|
||||
temp += "<br>"; break;
|
||||
|
||||
default:
|
||||
temp += character;
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user