From e43339ea90e5000ecfabba9379139470e62a7cbe Mon Sep 17 00:00:00 2001 From: Robin Krom Date: Mon, 11 Apr 2016 14:25:12 +0200 Subject: [PATCH] BUG-1935: Increased the retry delay a bit more The maximum waiting time should now be 3 seconds. --- GreenshotPlugin/Core/ClipboardHelper.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GreenshotPlugin/Core/ClipboardHelper.cs b/GreenshotPlugin/Core/ClipboardHelper.cs index ea415d09a..280f8d6a4 100644 --- a/GreenshotPlugin/Core/ClipboardHelper.cs +++ b/GreenshotPlugin/Core/ClipboardHelper.cs @@ -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); } } -} \ No newline at end of file +}