mirror of
https://git.code.sf.net/p/zint/code
synced 2025-05-29 06:15:23 -04: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
1 changed files with 1 additions and 1 deletions
|
@ -167,7 +167,7 @@ int svg_plot(struct zint_symbol *symbol)
|
|||
}
|
||||
addon[r] = '\0';
|
||||
|
||||
if((symbol->show_hrt == 0) || (ustrlen(symbol->text) != 0)) {
|
||||
if((symbol->show_hrt == 0) || (ustrlen(symbol->text) == 0)) {
|
||||
plot_text = 0;
|
||||
}
|
||||
if(plot_text) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue