1
0
mirror of https://github.com/opencv/opencv_contrib.git synced 2025-10-16 22:35:51 +08:00

Merge remote-tracking branch 'upstream/3.4' into merge-3.4

This commit is contained in:
Alexander Alekhin
2020-11-20 19:36:36 +00:00

View File

@@ -248,15 +248,16 @@ void unescapeCommas(QString &str)
QString shortenString(QString &str, int maxLength, bool cutEnd, bool fill)
{
const auto horizontalEllipsis = u8"\xE2\x80\xA6"; // u8"…"
if (str.size() > maxLength)
{
if (cutEnd)
{
str = str.mid(0, maxLength - 1) + u8"";
str = str.mid(0, maxLength - 1) + horizontalEllipsis;
}
else
{
str = u8"" +
str = horizontalEllipsis +
str.mid(str.size() + 1 - maxLength, str.size());
}
}