mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
Merge branch 'pr1669'
This commit is contained in:
commit
354347f5ea
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue
Block a user