On Friday, September 21, 2018 at 11:10:02 AM UTC+2, Vasily Galkin wrote: > > I tried with completely closing rdp sessions and disabling the software > that teoretically can "mess" with keyboard and clipboard (synergy), > and TortoiseSVN behaviour doesn't change. > > And the clipboard is not empty - on one of the next TortoiseSVN > executions, when the problem doesn't appear - pasting works fine. >
The clipboard is a global resource. If another app opens the clipboard but forgets to close it, other apps can not use it. https://docs.microsoft.com/en-us/windows/desktop/api/winuser/nf-winuser-openclipboard https://docs.microsoft.com/en-us/windows/desktop/api/winuser/nf-winuser-closeclipboard I've had the same problem once, but only until I found the tool that misbehaved and I removed it. Some tools just call OpenClipboard but fail for whatever reason to call CloseClipboard. The reason it works for you sometimes is that Windows automatically closes the clipboard again if the process that opened it exits. you could try a tool like Clipboard Spy or ClipSpy+ (https://www.codeproject.com/Articles/22624/ClipSpy). Stefan -- You received this message because you are subscribed to the Google Groups "TortoiseSVN" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/tortoisesvn/ed772ce6-9f1c-4e2b-9a26-7ad6aa30dab7%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
