1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

Copy ToxID into XA_PRIMARY clipboard too to make retrieval easier.

This commit is contained in:
Yuri 2015-05-17 10:57:55 -07:00 committed by marcel
parent 09503f0bfa
commit cfd04d22d9

View File

@ -150,7 +150,9 @@ void ProfileForm::copyIdClicked()
toxId->selectAll();
QString txt = toxId->text();
txt.replace('\n',"");
QApplication::clipboard()->setText(txt);
QApplication::clipboard()->setText(txt, QClipboard::Clipboard);
if (QApplication::clipboard()->supportsSelection())
QApplication::clipboard()->setText(txt, QClipboard::Selection);
toxId->setCursorPosition(0);
if (!hasCheck)