뻗는 부분 수정

This commit is contained in:
2017-03-27 10:46:57 +09:00
parent 24fe10afd8
commit 8f03c5137f
5 changed files with 231 additions and 125 deletions

View File

@@ -39,6 +39,9 @@ namespace AutoSellerNS
static void InsertLog(RichTextBox LogBox, LOG_TYPE enType, string strLog)
{
if(IsDebugging() == false && enType == LOG_TYPE.DEBUG)
return;
if(LogBox.InvokeRequired)
{
LogBox.Invoke(m_InsertLogDelegate, LogBox, enType, strLog);