1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2025-01-31 09:05:14 +01:00

Handle the "bell delimiter" in all encodings

This commit is contained in:
Martin Tůma 2021-10-27 18:01:53 +02:00
parent 644c854328
commit f83e320f85

View File

@ -214,7 +214,7 @@ Label LBLFile::str2label(const QVector<quint8> &str, bool capitalize,
for (int i = 0; i < str.size(); i++) { for (int i = 0; i < str.size(); i++) {
const quint8 &c = str.at(i); const quint8 &c = str.at(i);
if (c == 0 || c == 0x1d) if (c == 0 || c == 0x1d || c == 0x07)
break; break;
if (c == 0x1c) if (c == 0x1c)