diff options
| author | Mike Wey | 2011-11-08 00:03:27 +0100 |
|---|---|---|
| committer | Mike Wey | 2011-11-08 00:03:27 +0100 |
| commit | 423a79d7bb5bc3082dbc137ff923143807ff7492 (patch) | |
| tree | 9045f25055b015cf7d180dc27684e7b9d0a5fbf7 | |
| parent | 38abd7b7c2a063de2291bde5a7385c036e82f58b (diff) | |
DrawingContext.fontWeight was missing a space before the MVG command.
| -rw-r--r-- | dmagick/DrawingContext.d | 4 |
1 files 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); } /** |
