From 423a79d7bb5bc3082dbc137ff923143807ff7492 Mon Sep 17 00:00:00 2001 From: Mike Wey Date: Tue, 8 Nov 2011 00:03:27 +0100 Subject: DrawingContext.fontWeight was missing a space before the MVG command. --- dmagick/DrawingContext.d | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dmagick/DrawingContext.d b/dmagick/DrawingContext.d index 5356c17..8ea5190 100644 --- a/dmagick/DrawingContext.d +++ b/dmagick/DrawingContext.d @@ -472,13 +472,13 @@ class DrawingContext */ void fontWeight(size_t weight) { - operations ~= format("font-weight %s", weight); + operations ~= format(" font-weight %s", weight); } ///ditto void fontWeight(FontWeight weight) { - operations ~= format("font-weight %s", weight); + operations ~= format(" font-weight %s", weight); } /** -- cgit v1.2.3