diff options
Diffstat (limited to 'dmagick/DrawingContext.d')
| -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); } /** |
