1
0
Fork 0

Fix a dumb bug in NavDisplay text-enable.

This commit is contained in:
James Turner 2012-05-18 06:49:18 +01:00
parent 9b4c2def75
commit fe0a703a19

View file

@ -861,7 +861,7 @@ void NavDisplay::addSymbolToScene(SymbolInstance* sym)
addLine(sym->pos, sym->endPos, def->lineColor);
}
if (!def->hasText) {
if (!def->hasText || !def->textEnabled) {
return;
}