Notes |
|
|
I don't know if this is important but, i'm using "wxGTK2 v2.6.0" compiled following the wiki.
Thanks
KNagisa |
|
|
|
hi
i`m not a wx expert but i found fix for this (don`t know is it right solution but it works :) in 2.0.3 and latest CVS wx2.6.0
changed in amule-gui.cpp line
wxTheClipboard->UsePrimarySelection(TRUE);
to
wxTheClipboard->UsePrimarySelection(FALSE);
(i think it should not use primary selection)
or delete this line
follows changed function:
// Sets the contents of the clipboard. Prior content erased.
bool CamuleGuiBase::CopyTextToClipboard(wxString strText)
{
bool ClipBoardOpen = wxTheClipboard->Open();
if (ClipBoardOpen) {
wxTheClipboard->UsePrimarySelection(FALSE); // or delete this
wxTheClipboard->SetData(new wxTextDataObject(strText));
wxTheClipboard->Close();
}
return ClipBoardOpen;
} |
|
|
|
Same problem with 2.0.3 version.
Selecting a filename -> right mouse, the "Copy ED2k link to clipboard" and Copy ED2k ling to clipboard (HTML)" have both the same problem. |
|
|
|
In 2.1.0 the bug is still unresolved. |
|
|
|
attached patch (amule-gui.diff) fixes the clipboard issue (4 me). tested in 2.1.0. |
|
|
|
This has now been fixed.
Cheers. |
|