diff options
author | Saturneric <[email protected]> | 2021-06-03 20:24:45 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2021-06-03 20:24:45 +0000 |
commit | 5071d17e6e4cfceffb7c735c7714206dddc688a9 (patch) | |
tree | f9fbf5769c472b57021032484a8c0f5508ae4b85 /src/ui/keypair_details/KeyPairUIDTab.cpp | |
parent | Add and change the expiration date of the key pair. (diff) | |
download | GpgFrontend-5071d17e6e4cfceffb7c735c7714206dddc688a9.tar.gz GpgFrontend-5071d17e6e4cfceffb7c735c7714206dddc688a9.zip |
Add an operation to change the expiration date of the subkey.
Add reminder of expiration of subkey.
Fixed the issue of incomplete display of KeyList for past key strikethrough.
Improve the expiration prompt for the key pair master key.
Add support for the case where the master key does not exist.
Add support for the case where the subkey does not exist.
Prompt the user when the master key does not exist.
Improve the filtering conditions for the key list that meets the key signatures.
Fix some spelling errors.
Signed-off-by: Saturneric <[email protected]>
Diffstat (limited to 'src/ui/keypair_details/KeyPairUIDTab.cpp')
-rw-r--r-- | src/ui/keypair_details/KeyPairUIDTab.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/keypair_details/KeyPairUIDTab.cpp b/src/ui/keypair_details/KeyPairUIDTab.cpp index 1fe57916..729fb1d2 100644 --- a/src/ui/keypair_details/KeyPairUIDTab.cpp +++ b/src/ui/keypair_details/KeyPairUIDTab.cpp @@ -209,7 +209,7 @@ void KeyPairUIDTab::slotRefreshSigList() { auto *tmp4 = new QTableWidgetItem(sig->create_time.toString()); sigList->setItem(sigRow, 3, tmp4); - auto *tmp5 = new QTableWidgetItem(sig->expire_time.toTime_t() == 0 ? tr("Never Expire") : sig->expire_time.toString()); + auto *tmp5 = new QTableWidgetItem(sig->expire_time.toTime_t() == 0 ? tr("Never Expires") : sig->expire_time.toString()); tmp5->setTextAlignment(Qt::AlignCenter); sigList->setItem(sigRow, 4, tmp5); |