From bd59ed145747e31435d21b1250c0a0fd735744bb Mon Sep 17 00:00:00 2001 From: buliabyak Date: Tue, 11 Mar 2008 18:15:06 +0000 Subject: [PATCH] fix by Albin Sunnanbo for dash offset in text --- src/display/nr-arena-glyphs.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/display/nr-arena-glyphs.cpp b/src/display/nr-arena-glyphs.cpp index ad108e0a0..ca4e781a9 100644 --- a/src/display/nr-arena-glyphs.cpp +++ b/src/display/nr-arena-glyphs.cpp @@ -185,6 +185,7 @@ nr_arena_glyphs_update(NRArenaItem *item, NRRectL */*area*/, NRGC *gc, guint /*s nstyl.dash_offset = 0; nstyl.dashes=NULL; if ( glyphs->style->stroke_dash.n_dash > 0 ) { + nstyl.dash_offset = glyphs->style->stroke_dash.offset * scale; nstyl.nbDash=glyphs->style->stroke_dash.n_dash; nstyl.dashes=(double*)malloc(nstyl.nbDash*sizeof(double)); for (int i = 0; i < nstyl.nbDash; i++) nstyl.dashes[i]= glyphs->style->stroke_dash.dash[i] * scale; -- 2.30.2