diff options
author | Saturneric <[email protected]> | 2023-07-13 06:51:32 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2023-07-13 06:51:32 +0000 |
commit | 7c96f052da1f73cbcd2f0671640d1019eaaa906a (patch) | |
tree | 814d98407a0a3bc8adb32f4b8065d8428f016eb9 /src/ui/dialog/SignersPicker.cpp | |
parent | feat: add CacheManager to deal with cache (diff) | |
download | GpgFrontend-7c96f052da1f73cbcd2f0671640d1019eaaa906a.tar.gz GpgFrontend-7c96f052da1f73cbcd2f0671640d1019eaaa906a.zip |
feat: support marking a key as favourite
Diffstat (limited to 'src/ui/dialog/SignersPicker.cpp')
-rw-r--r-- | src/ui/dialog/SignersPicker.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/dialog/SignersPicker.cpp b/src/ui/dialog/SignersPicker.cpp index a670e514..7e26de09 100644 --- a/src/ui/dialog/SignersPicker.cpp +++ b/src/ui/dialog/SignersPicker.cpp @@ -45,7 +45,7 @@ SignersPicker::SignersPicker(QWidget* parent) /*Setup KeyList*/ key_list_ = new KeyList(false, this); key_list_->AddListGroupTab( - _("Signers"), KeyListRow::ONLY_SECRET_KEY, + _("Signers"), "signers", KeyListRow::ONLY_SECRET_KEY, KeyListColumn::NAME | KeyListColumn::EmailAddress | KeyListColumn::Usage, [](const GpgKey& key) -> bool { return key.IsHasActualSigningCapability(); |