mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-08-13 16:45:49 -04:00
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:
parent
00517fe68d
commit
c1b88500e0
1 changed files with 3 additions and 2 deletions
|
@ -72,8 +72,8 @@ class MyFilter: public QObject
|
||||||
|
|
||||||
void GenCertDialog::grabMouse()
|
void GenCertDialog::grabMouse()
|
||||||
{
|
{
|
||||||
static int last_x = 0 ;
|
static uint32_t last_x = 0 ;
|
||||||
static int last_y = 0 ;
|
static uint32_t last_y = 0 ;
|
||||||
static uint32_t count = 0 ;
|
static uint32_t count = 0 ;
|
||||||
|
|
||||||
uint32_t x = QCursor::pos().x() ;
|
uint32_t x = QCursor::pos().x() ;
|
||||||
|
@ -555,6 +555,7 @@ void GenCertDialog::genPerson()
|
||||||
RsPeerId sslId;
|
RsPeerId sslId;
|
||||||
std::cerr << "GenCertDialog::genPerson() Generating SSL cert with gpg id : " << PGPId << std::endl;
|
std::cerr << "GenCertDialog::genPerson() Generating SSL cert with gpg id : " << PGPId << std::endl;
|
||||||
std::string err;
|
std::string err;
|
||||||
|
this->hide();//To show dialog asking password PGP Key.
|
||||||
bool okGen = RsAccounts::GenerateSSLCertificate(PGPId, "", genLoc, "", isHiddenLoc, sslPasswd, sslId, err);
|
bool okGen = RsAccounts::GenerateSSLCertificate(PGPId, "", genLoc, "", isHiddenLoc, sslPasswd, sslId, err);
|
||||||
|
|
||||||
if (okGen)
|
if (okGen)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue