Merge pull request #23 from greenshot/bugfix/BUG-1935_clipboard_retry

BUG-1935: Increased the retry delay a bit more [skip ci]
This commit is contained in:
Robin Krom 2016-04-11 14:26:17 +02:00
commit 01d59ad602

View file

@ -160,7 +160,7 @@ EndSelection:<<<<<<<4
try
{
// For BUG-1935 this was changed from looping ourselfs, or letting MS retry...
Clipboard.SetDataObject(ido, copy, 15, 150);
Clipboard.SetDataObject(ido, copy, 15, 200);
}
catch (Exception clipboardSetException)
{
@ -851,4 +851,4 @@ EndSelection:<<<<<<<4
return GetFromDataObject(GetDataObject(), format);
}
}
}
}