mirror of
https://github.com/zint/zint
synced 2024-11-16 20:57:25 +13:00
Correct HRT error
Correct an error which prevented human readable text being saved in SVG images.
This commit is contained in:
parent
46d604dad7
commit
e072a0723e
@ -167,7 +167,7 @@ int svg_plot(struct zint_symbol *symbol)
|
|||||||
}
|
}
|
||||||
addon[r] = '\0';
|
addon[r] = '\0';
|
||||||
|
|
||||||
if((symbol->show_hrt == 0) || (ustrlen(symbol->text) != 0)) {
|
if((symbol->show_hrt == 0) || (ustrlen(symbol->text) == 0)) {
|
||||||
plot_text = 0;
|
plot_text = 0;
|
||||||
}
|
}
|
||||||
if(plot_text) {
|
if(plot_text) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user