diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2018-04-06 10:54:04 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-04-06 10:54:04 +0200 |
commit | 7991e188c17bc91a45fc277e487834200bc1783d (patch) | |
tree | 79cdb9f731a29b1ef8ab56915c458386112325c9 | |
parent | bf3f57d011b51beb8783e0b0a6bc8c84bb893059 (diff) |
Fix bug in "scale".
-rw-r--r-- | pict.scm | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -299,7 +299,7 @@ strings that are built from the list of attributes LST." (class "scale") (x 0) (y 0)) - ,((transform-modifier "scale" (number->string factor)) + ,((transform-modifier "scale" (const (number->string factor))) `(g (@ (class "transform")) ,(pict-sxml pict)))))) |