diff options
-rw-r--r-- | pict.scm | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -826,7 +826,8 @@ appearance." ;; XXX sometimes closing the handle fails... (false-if-exception (rsvg-handle-close h)) (make-pict `(svg (@ (height ,(format #f "~apx" full-height)) - (width ,width) + ;; TODO: for some reason the width is insufficient + (width ,(format #f "~apx" (+ width 5))) (x 0) (y 0)) ,text-tag))))))) |