Browse Source

fix from last checking causing no paste after selecting clip

sabrogden 4 years ago
parent
commit
2a22424f8e
1 changed files with 2 additions and 2 deletions
  1. 2 2
      ProcessPaste.cpp

+ 2 - 2
ProcessPaste.cpp

@@ -58,7 +58,7 @@ BOOL CProcessPaste::DoPaste()
 			// when new data is put on the Clipboard
 			m_pOle = NULL; // m_pOle should not be accessed past this point
 
-			/*if (m_bSendPaste)
+			if (m_bSendPaste)
 			{
 				Log(_T("Sending Paste to active window"));
 				theApp.m_activeWnd.SendPaste(m_bActivateTarget);
@@ -67,7 +67,7 @@ BOOL CProcessPaste::DoPaste()
 			{
 				Log(_T("Activating active window"));
 				theApp.m_activeWnd.ActivateTarget();
-			}*/
+			}
 
 			ret = TRUE;
 		}