changed dialog to none blocking mode

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@7872 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
defnax 2015-01-25 12:24:10 +00:00
parent 4a4ea80110
commit 7c850aaa02
3 changed files with 95 additions and 91 deletions

View file

@ -2464,8 +2464,10 @@ void MessageComposer::identityDetails()
return;
}
IdDetailsDialog dialog(RsGxsGroupId(id), this);
dialog.exec();
IdDetailsDialog *dialog = new IdDetailsDialog(RsGxsGroupId(id));
dialog->show();
/* Dialog will destroy itself */
}
void MessageComposer::tagAboutToShow()