1
0
Fork 0

GUI: fixed find window in AttachDialog

This commit is contained in:
mrexodia 2016-12-11 12:40:16 +01:00
parent 54f100a707
commit 518dcd30d4
No known key found for this signature in database
GPG Key ID: FC89E0AAA0C1AAD8
1 changed files with 1 additions and 1 deletions

View File

@ -126,7 +126,7 @@ retryFindWindow:
QMessageBox::Yes | QMessageBox::No, this);
if(hiddenProcessDialog.exec() == QMessageBox::Yes)
{
DbgCmdExec(QString("attach " + pid).toUtf8().constData());
DbgCmdExec(QString("attach %1").arg(pid, 0, 16).toUtf8().constData());
accept();
}
}