aboutsummaryrefslogtreecommitdiffstats
path: root/gpgwin.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--gpgwin.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/gpgwin.cpp b/gpgwin.cpp
index d3edd1a..529184b 100644
--- a/gpgwin.cpp
+++ b/gpgwin.cpp
@@ -784,7 +784,7 @@ void GpgWin::verify()
qDebug() << "sig validity reason: " << sign->validity_reason << " - " << gpg_err_code(sign->validity_reason) << " - " << gpgme_strerror(sign->validity_reason);
sign = sign->next;
}
- vn->setVerifyDetailText(*verifyDetailText);
+ //vn->setVerifyDetailText(*verifyDetailText);
// If an unknown key is found, enable the importfromkeyserveraction
if (unknownKeyFound) {
@@ -795,8 +795,11 @@ void GpgWin::verify()
// Remove the last linebreak
verifyLabelText.remove(verifyLabelText.length()-1,1);
+ vn->addVerifyLabel(verifyLabelText,"ok");
+ vn->addVerifyLabel(verifyLabelText,"warning");
+ vn->addVerifyLabel(verifyLabelText,"critical");
- vn->setVerifyLabel(verifyLabelText);
+// vn->setVerifyLabel(verifyLabelText);
edit->curPage()->showNotificationWidget(vn, "verifyNotification");
}