Skip to content

Commit

Permalink
version update
Browse files Browse the repository at this point in the history
  • Loading branch information
doakey3 committed Apr 5, 2018
1 parent f53ba13 commit 299ab74
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"name": "VSE Transform tool",
"description": "Quickly transform, crop and fade video strips in Blender's Video Sequence Editor",
"author": "kgeogeo, DoubleZ, doakey3",
"version": (1, 1, 9),
"version": (1, 2, 0),
"blender": (2, 7, 9),
"wiki_url": "https://github.com/doakey3/VSE_Transform_Tools",
"tracker_url": "https://github.com/doakey3/VSE_Transform_Tools/issues",
Expand Down
2 changes: 1 addition & 1 deletion operators/pixelate/pixelate.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class Pixelate(bpy.types.Operator):
"""
![Demo](https://i.imgur.com/u8nUPj6.gif)
Pixelate a clip by adding 2 transform modifiers: 1 shrinking,
Pixelate a clip by adding 2 transform effects: 1 shrinking,
1 expanding.
"""
bl_idname = "vse_transform_tools.pixelate"
Expand Down
2 changes: 2 additions & 0 deletions operators/utils/geometry/reposition_strip.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ def reposition_strip(strip, group_box):
available_width = res_x - total_width
available_height = res_y - total_height

print(strip.name)

if strip.use_translation:
strip.transform.offset_x -= min_left
strip.transform.offset_y -= min_bottom
Expand Down

0 comments on commit 299ab74

Please sign in to comment.