diff options
author | Saturneric <[email protected]> | 2022-05-12 17:11:32 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2022-05-12 17:11:32 +0000 |
commit | 865ce3654497c45cba8e0f7f6bd2d613f8798c97 (patch) | |
tree | cdfc5499b6246f04ca0956dbfdd54206335ab9cc /src/ui/widgets | |
parent | fix(ui): adjuest timeout value for keyserver test (diff) | |
download | GpgFrontend-dev/2.0.7.tar.gz GpgFrontend-dev/2.0.7.zip |
fix(core): fix a bug when key in smart carddev/2.0.7
Diffstat (limited to 'src/ui/widgets')
-rw-r--r-- | src/ui/widgets/KeyList.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/ui/widgets/KeyList.cpp b/src/ui/widgets/KeyList.cpp index 237576ad..bbddc84b 100644 --- a/src/ui/widgets/KeyList.cpp +++ b/src/ui/widgets/KeyList.cpp @@ -66,8 +66,11 @@ void KeyList::init() { connect(SignalStation::GetInstance(), &SignalStation::SignalKeyDatabaseRefreshDone, this, &KeyList::SlotRefresh); + + // register key database sync signal for refresh button connect(ui_->refreshKeyListButton, &QPushButton::clicked, this, - &KeyList::SlotRefresh); + &KeyList::SignalRefreshDatabase); + connect(ui_->uncheckButton, &QPushButton::clicked, this, &KeyList::uncheck_all); connect(ui_->checkALLButton, &QPushButton::clicked, this, |