aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui/widgets/SignersPicker.cpp
diff options
context:
space:
mode:
authorSaturneric <[email protected]>2021-12-15 18:29:46 +0000
committerSaturneric <[email protected]>2021-12-16 09:36:19 +0000
commit51259403d70cb69c2fbd2b38794867f0b60bcf35 (patch)
treeecbaffef748db326f00ac58f757e5e824b61d52e /src/ui/widgets/SignersPicker.cpp
parentSMTP Support Added. (diff)
downloadGpgFrontend-51259403d70cb69c2fbd2b38794867f0b60bcf35.tar.gz
GpgFrontend-51259403d70cb69c2fbd2b38794867f0b60bcf35.zip
Added & Improved & Fixed.
Fixed Bugs in core. Improved Send Mail & Keyserver Settings. Added Pubkey Sync for key list. Added Refresh for key list. Improved Send Mail and others. Known Bugs Fixed.
Diffstat (limited to '')
-rw-r--r--src/ui/widgets/SignersPicker.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/ui/widgets/SignersPicker.cpp b/src/ui/widgets/SignersPicker.cpp
index 997ee27a..6108d78e 100644
--- a/src/ui/widgets/SignersPicker.cpp
+++ b/src/ui/widgets/SignersPicker.cpp
@@ -40,14 +40,13 @@ SignersPicker::SignersPicker(QWidget* parent) : QDialog(parent) {
else
return true;
});
-
mKeyList->slotRefresh();
auto* vbox2 = new QVBoxLayout();
vbox2->addWidget(new QLabel(QString(_("Select Signer(s)")) + ": "));
vbox2->addWidget(mKeyList);
vbox2->addWidget(new QLabel(
- _("Selecting Nothing will eventually use default key to sign.")));
+ _("If any key is selected, the default key will be used for signing.")));
vbox2->addWidget(confirmButton);
vbox2->addStretch(0);
setLayout(vbox2);