diff --git a/uppsrc/CtrlCore/Win32Clip.cpp b/uppsrc/CtrlCore/Win32Clip.cpp index 6449af5d9..bc0c8e00e 100644 --- a/uppsrc/CtrlCore/Win32Clip.cpp +++ b/uppsrc/CtrlCore/Win32Clip.cpp @@ -80,7 +80,7 @@ bool ClipboardOpen() // Win32 has serious race condition problem with clipboard; system or other apps open it // right after we close it thus blocking us to send more formats // So the solution is to wait and retry... (mirek, 2011-01-09) - int delay = 2; + int delay = 1; for(int i = 0; i < 5; i++) { if(OpenClipboard(utilityHWND)) return true;