From 7a7f5a677f5bddb571273c8f490ca88ca9653d67 Mon Sep 17 00:00:00 2001
From: LYW <leeyeanwoo@diteam.co.kr>
Date: 월, 18 10월 2021 18:25:48 +0900
Subject: [PATCH] Ongoing90 #3684 CF AOI Review 전설비 Review History Defect이미지 클릭시 Offset 자동 계산 기능 추가

---
 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