mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-24 11:45:53 +01:00
Properly split the shield label
This commit is contained in:
parent
db0df92933
commit
ce5a3be7ca
@ -139,9 +139,12 @@ Label LBLFile::label8b(Handle &hdl, quint32 offset) const
|
||||
if (!c || c == 0x1d)
|
||||
break;
|
||||
|
||||
if ((c >= 0x1e && c <= 0x1f))
|
||||
bap->append(' ');
|
||||
else if (c <= 0x07) {
|
||||
if ((c >= 0x1e && c <= 0x1f)) {
|
||||
if (bap == &shieldLabel)
|
||||
bap = &label;
|
||||
else
|
||||
bap->append(' ');
|
||||
} else if (c <= 0x07) {
|
||||
shieldType = (Label::Shield::Type)c;
|
||||
bap = &shieldLabel;
|
||||
} else if (bap == &shieldLabel && QChar(c).isSpace()) {
|
||||
|
Loading…
Reference in New Issue
Block a user