Hint at one-way operation during key certification.

Applying Exportable and Non-Revocable options cannot be undone.
This commit is contained in:
SET
2020-11-07 16:28:28 +01:00
parent ffd9692504
commit 9996ec6f1c
3 changed files with 4 additions and 0 deletions

View File

@@ -69,8 +69,10 @@ void PopupCertifyUserId::Create(vector<WString>& privateKeys,
WText * lblOptions = new WText(TR("Options"));
vblOptions->addWidget(unique_ptr<WText> (lblOptions));
m_cbOptionExportable = new WCheckBox(TR("ExportableCertification"));
m_cbOptionExportable->setToolTip(TR("OneWayHint"));
vblOptions->addWidget(unique_ptr<WCheckBox> (m_cbOptionExportable));
m_cbOptionNonRevocable = new WCheckBox(TR("NonRevocableCertification"));
m_cbOptionNonRevocable->setToolTip(TR("OneWayHint"));
vblOptions->addWidget(unique_ptr<WCheckBox> (m_cbOptionNonRevocable));
/*m_cbOptionTrust = new WCheckBox(TR("TrustCertification"));
vblOptions->addWidget(unique_ptr<WCheckBox> (m_cbOptionTrust));*/