|
@@ -639,6 +639,13 @@
|
|
|
if (self.ablumImageView.hidden) {
|
|
|
return;
|
|
|
}
|
|
|
+ OperationNodeVideoBase *base = nil;
|
|
|
+ if ([self.currentOperationNode isKindOfClass:[OperationNodeVideoBase class]]) {
|
|
|
+ base = (OperationNodeVideoBase *)self.currentOperationNode;
|
|
|
+ }
|
|
|
+ if (base.isRecording) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
if(self.mode != SDK_CAPTURE_MODE_SINGLE) {
|
|
|
PCSPreviewViewController *vc = [[PCSPreviewViewController alloc]init];
|
|
|
vc.modalPresentationStyle = UIModalPresentationFullScreen;
|