From a00de9d4a0a6c988060c1963e05a8518b09fe6c5 Mon Sep 17 00:00:00 2001 From: bulia byak Date: Tue, 11 Mar 2008 18:15:06 +0000 Subject: fix by Albin Sunnanbo for dash offset in text (bzr r5055) --- 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; -- cgit v1.2.3