Hi all,
On 01/03/2010, Chris G cl@isbd.net wrote:
My problem is that applications are *designed* to paste text at the *mouse cursor* position and I want to paste text at the *text cursor* position. I don't think you have quite understood what my original rant was about.
I'm pretty sure I've also encountered this, so it's not Chris going insane.
It's pretty much as if the standard action is (pseudo-C++):
void onPasteButtonAction() { Position p = MouseCursor.position(); textArea->insertText(pasteBuffer, AtLocation(p)); }
Srdj