mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-07-13 10:25:10 +02:00
Handle the "bell delimiter" in all encodings
This commit is contained in:
@ -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)
|
||||||
|
Reference in New Issue
Block a user