Remove newlines from the long title in row2

This commit is contained in:
vitor-k 2019-09-08 17:06:19 -03:00
parent 719912786a
commit 966d128025
1 changed files with 1 additions and 1 deletions

View File

@ -220,7 +220,7 @@ public:
? QStringLiteral(" ")
: QStringLiteral("\n ");
}
row2 += display_texts.at(row_2_id);
row2 += display_texts.at(row_2_id).simplified();
}
return QString(row1 + row2);
} else {