]> granicus.if.org Git - handbrake/commitdiff
MacGui: fix HBPicture copy method.
authorritsuka <damiog@gmail.com>
Fri, 17 Apr 2015 13:34:02 +0000 (13:34 +0000)
committerritsuka <damiog@gmail.com>
Fri, 17 Apr 2015 13:34:02 +0000 (13:34 +0000)
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@7092 b64f7644-9d1e-0410-96f1-a4d463321fa5

macosx/HBPicture.m

index d713f631f498cb9f246be2acc8915f53e2d23e8d..cf3ebfb50d84d6dbd9a7240e35aa01ae27549593 100644 (file)
@@ -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;
     }