From c08fcb0ca69c8893d64504e082608ad8fb82eb40 Mon Sep 17 00:00:00 2001
From: LYW <leeyeanwoo@diteam.co.kr>
Date: 월, 25 10월 2021 08:58:31 +0900
Subject: [PATCH] 프로그램 시작시 백업 기능 삭제(네트워크 딜레이로 인한 프로그램 지연)

---
 ReviewHistory/ReveiwHistory/akFormationMap.cpp |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/ReviewHistory/ReveiwHistory/akFormationMap.cpp b/ReviewHistory/ReveiwHistory/akFormationMap.cpp
index 323c097..d517d85 100644
--- a/ReviewHistory/ReveiwHistory/akFormationMap.cpp
+++ b/ReviewHistory/ReveiwHistory/akFormationMap.cpp
@@ -1055,12 +1055,12 @@
 
 		CString strDefectInfo;
 		COLORREF cl;
-		cl = RGB(39, 255, 39);
+		cl = RGB(0, 0, 0);
 
 		pDC->SetTextAlign(TA_LEFT | TA_BASELINE);
 		pDC->SetTextColor(cl);
-		strDefectInfo.Format("%d : %.3lf, %.3lf Cam: %d, SCan : %d", m_pMouseOveredDefect->m_nDefectID, m_pMouseOveredDefect->dPositionX, m_pMouseOveredDefect->dPositionY, m_pMouseOveredDefect->m_nCameraID, m_pMouseOveredDefect->m_nScanIdx);
-		pDC->TextOut(GetWindowPosX(m_pMouseOveredDefect->dPositionX)+5, GetWindowPosY(m_pMouseOveredDefect->dPositionY) - 7, strDefectInfo);
+		strDefectInfo.Format("%dCam %dSCan, %d : %.3lf, %.3lf ", m_pMouseOveredDefect->m_nCameraID, m_pMouseOveredDefect->m_nScanIdx, m_pMouseOveredDefect->m_nDefectID, m_pMouseOveredDefect->dPositionX, m_pMouseOveredDefect->dPositionY);
+		pDC->TextOut(GetWindowPosX(m_pMouseOveredDefect->dPositionX)+5, GetWindowPosY(m_pMouseOveredDefect->dPositionY)+3, strDefectInfo);
 
 	}
 	if (m_pSelectedFormation)

--
Gitblit v1.9.3