diff options
| author | mathog <> | 2015-05-21 18:40:38 +0000 |
|---|---|---|
| committer | mathog <> | 2015-05-21 18:40:38 +0000 |
| commit | e091cbbea4228bf243b1c040e774ad884683da8f (patch) | |
| tree | 14aa75541557d5982d1335a25e975d8c274b9a49 /src | |
| parent | patch bug 1294784 (diff) | |
| download | inkscape-e091cbbea4228bf243b1c040e774ad884683da8f.tar.gz inkscape-e091cbbea4228bf243b1c040e774ad884683da8f.zip | |
patch for bug 1457612
(bzr r14168)
Diffstat (limited to 'src')
| -rw-r--r-- | src/extension/internal/text_reassemble.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/extension/internal/text_reassemble.c b/src/extension/internal/text_reassemble.c index d3aafef12..fa983b83d 100644 --- a/src/extension/internal/text_reassemble.c +++ b/src/extension/internal/text_reassemble.c @@ -67,8 +67,8 @@ Optional compiler switches for development: File: text_reassemble.c -Version: 0.0.16 -Date: 25-FEB-2015 +Version: 0.0.17 +Date: 21-MAY-2015 Author: David Mathog, Biology Division, Caltech email: mathog@caltech.edu Copyright: 2015 David Mathog and California Institute of Technology (Caltech) @@ -2204,10 +2204,10 @@ void TR_layout_2_svg(TR_INFO *tri){ sprintf(obuf,"text-decoration:"); /* multiple text decoration styles may be set */ utmp = tsp->decoration & TXTDECOR_TMASK; - if(utmp & TXTDECOR_UNDER ){ strcat(obuf,"underline"); } - if(utmp & TXTDECOR_OVER ){ strcat(obuf,"overline"); } - if(utmp & TXTDECOR_BLINK ){ strcat(obuf,"blink"); } - if(utmp & TXTDECOR_STRIKE){ strcat(obuf,"line-through");} + if(utmp & TXTDECOR_UNDER ){ strcat(obuf," underline"); } + if(utmp & TXTDECOR_OVER ){ strcat(obuf," overline"); } + if(utmp & TXTDECOR_BLINK ){ strcat(obuf," blink"); } + if(utmp & TXTDECOR_STRIKE){ strcat(obuf," line-through");} if(*obuf){ /* only a single text decoration line type may be set */ switch(tsp->decoration & TXTDECOR_LMASK){ |
