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:
parent
644c854328
commit
f83e320f85
@ -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)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user