diff options
author | ritsuka <[email protected]> | 2015-04-17 13:34:02 +0000 |
---|---|---|
committer | ritsuka <[email protected]> | 2015-04-17 13:34:02 +0000 |
commit | 85e043496a821638926212f1d590436f22a33f65 (patch) | |
tree | d178c8fdbde27ae2d2839f939dc2564aa2528612 | |
parent | cb6518b73d6e9a807c07acd5d18b83d2b02abddf (diff) |
MacGui: fix HBPicture copy method.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@7092 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r-- | macosx/HBPicture.m | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/macosx/HBPicture.m b/macosx/HBPicture.m index d713f631f..cf3ebfb50 100644 --- a/macosx/HBPicture.m +++ b/macosx/HBPicture.m @@ -463,6 +463,16 @@ NSString * const HBPictureChangedNotification = @"HBPictureChangedNotification"; copy->_cropLeft = _cropLeft; copy->_cropRight = _cropRight; + copy->_autoCropTop = _autoCropTop; + copy->_autoCropBottom = _autoCropBottom; + copy->_autoCropLeft = _autoCropLeft; + copy->_autoCropRight = _autoCropRight; + + copy->_sourceWidth = _sourceWidth; + copy->_sourceHeight = _sourceHeight; + copy->_sourceParNum = _sourceParNum; + copy->_sourceParDen = _sourceParDen; + copy->_notificationsEnabled = _notificationsEnabled; } |