Add accelerators to the log window to copy revisions to the clipboard:
Alt-Ctrl-C or Ctrl-R.

Note, as far as I can tell, this code is obsolete so I removed it:

void CLogDlg::CopySelectionToClipBoard() const
{
    if ((GetKeyState(VK_CONTROL) & 0x8000) && ((GetKeyState(L'C') & 0x8000)
== 0) &&
        ((GetKeyState(VK_INSERT) & 0x8000) == 0))
    {
        CopyCommaSeparatedRevisionsToClipboard();
    }
    else
    {
        CopySelectionToClipBoard(!(GetKeyState(VK_SHIFT) & 0x8000));
    }
}

It was originally added in revision 24175 as a way to copy revisions by
holding down Ctrl while selecting "Copy to Clipboard" from the context
menu. It also checks for 'C' and Insert keys so Ctrl-C and Ctrl-Insert do
*not* copy revisions to the clipboard. Since the Copy option was replaced
with a submenu, I don't see any conditions that would cause that branch to
be taken anymore.

-- 
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 tortoisesvn+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tortoisesvn/CADN%2BUxx%3D97N%2BVR8obeVcrNvvO2Kmo94ubQ0CfkQ_WEEUOJhKPA%40mail.gmail.com.

Attachment: CopyRevisions.patch
Description: Binary data

Reply via email to