Fix GenCertDialog masking PGP Key password dialog at end.

Sometimes, at end, when creating new key, the dialog stay behind.
This commit is contained in:
Phenom 2015-12-28 13:45:22 +01:00
parent 00517fe68d
commit c1b88500e0

View File

@ -72,8 +72,8 @@ class MyFilter: public QObject
void GenCertDialog::grabMouse()
{
static int last_x = 0 ;
static int last_y = 0 ;
static uint32_t last_x = 0 ;
static uint32_t last_y = 0 ;
static uint32_t count = 0 ;
uint32_t x = QCursor::pos().x() ;
@ -555,6 +555,7 @@ void GenCertDialog::genPerson()
RsPeerId sslId;
std::cerr << "GenCertDialog::genPerson() Generating SSL cert with gpg id : " << PGPId << std::endl;
std::string err;
this->hide();//To show dialog asking password PGP Key.
bool okGen = RsAccounts::GenerateSSLCertificate(PGPId, "", genLoc, "", isHiddenLoc, sslPasswd, sslId, err);
if (okGen)