diff options
| author | Richard White <rwhite8282@gmail.com> | 2016-05-19 02:06:38 +0000 |
|---|---|---|
| committer | Richard White <rwhite8282@gmail.com> | 2016-05-19 02:06:38 +0000 |
| commit | cf6e3cf5b4728951fafe742167e483d71fd0dba7 (patch) | |
| tree | 72e315712e2c5c93e4510b4028e9a80b9422ff57 /share/extensions | |
| parent | Merge from Inkscape trunk. (diff) | |
| download | inkscape-cf6e3cf5b4728951fafe742167e483d71fd0dba7.tar.gz inkscape-cf6e3cf5b4728951fafe742167e483d71fd0dba7.zip | |
Corrected frame extension inside option box size.
(bzr r14668.1.4)
Diffstat (limited to 'share/extensions')
| -rw-r--r-- | share/extensions/frame.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/extensions/frame.py b/share/extensions/frame.py index d0cafc37b..f6d54e180 100644 --- a/share/extensions/frame.py +++ b/share/extensions/frame.py @@ -158,7 +158,7 @@ class Frame(inkex.Effect): if 'outside' == position: box = size_box(box, (width/2)) else: - box = size_box(box, (width/2)) + box = size_box(box, -(width/2)) name = 'Frame' frame = self.add_frame(parent, name, box, style, corner_radius) if self.options.clip: |
