From ebfd7a15f5c7fe5d4cf9120a49b21f3cffd050f7 Mon Sep 17 00:00:00 2001
From: LYW <leeyeanwoo@diteam.co.kr>
Date: 화, 10 8월 2021 18:40:18 +0900
Subject: [PATCH] 1. Defect Picking 기능 OFF

---
 ReviewSystem/CHDefectPicker/DefectPicker.cpp |    8 ++++++--
 1 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/ReviewSystem/CHDefectPicker/DefectPicker.cpp b/ReviewSystem/CHDefectPicker/DefectPicker.cpp
index cdb37bf..403d64c 100644
--- a/ReviewSystem/CHDefectPicker/DefectPicker.cpp
+++ b/ReviewSystem/CHDefectPicker/DefectPicker.cpp
@@ -45,7 +45,9 @@
 
 			SReviewResult dataResult = vecSorterResult->at(nIndx);	
 
-			if(dataResult.nLocation != DefectLoc_ASG && dataResult.nLocation != DefectLoc_PAD && dataResult.nLocation != DefectLoc_C2C)	continue;
+			//LYW 210810 DeleteStart
+			//if(dataResult.nLocation != DefectLoc_ASG && dataResult.nLocation != DefectLoc_PAD && dataResult.nLocation != DefectLoc_C2C)	continue;
+			//LYW 210810 DeleteEnd
 
 			dataResult.nResultIdx = index;
 			dataResult.nSequenceNo = index++;
@@ -69,7 +71,9 @@
 
 			SReviewResult dataResult = vecSorterResult->at(nIndx);	
 
-			if(dataResult.nLocation == DefectLoc_ASG || dataResult.nLocation == DefectLoc_PAD || dataResult.nLocation == DefectLoc_C2C)	continue;
+			//LYW 210810 DeleteStart
+			//if(dataResult.nLocation == DefectLoc_ASG || dataResult.nLocation == DefectLoc_PAD || dataResult.nLocation == DefectLoc_C2C)	continue;
+			//LYW 210810 DeleteEnd
 
 			dataResult.nResultIdx = index;
 			dataResult.nSequenceNo = index++;

--
Gitblit v1.9.3