diff options
author | saturneric <[email protected]> | 2024-11-17 13:56:57 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-11-17 13:56:57 +0000 |
commit | aa2a6e3834a640c1cab0b2d7433c6f0c4f236cda (patch) | |
tree | 0fbbedcf646ef8064a0cea72123a7da785a169d8 /src/ui/UserInterfaceUtils.cpp | |
parent | feat: can open key db by menu action triggered by right click (diff) | |
download | GpgFrontend-aa2a6e3834a640c1cab0b2d7433c6f0c4f236cda.tar.gz GpgFrontend-aa2a6e3834a640c1cab0b2d7433c6f0c4f236cda.zip |
fix: should import or export keys to selected key db
Diffstat (limited to '')
-rw-r--r-- | src/ui/UserInterfaceUtils.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ui/UserInterfaceUtils.cpp b/src/ui/UserInterfaceUtils.cpp index 040a57a7..db54dd15 100644 --- a/src/ui/UserInterfaceUtils.cpp +++ b/src/ui/UserInterfaceUtils.cpp @@ -269,6 +269,7 @@ void CommonUtils::RaiseFailureMessageBox(QWidget *parent, GpgError err) { void CommonUtils::SlotImportKeys(QWidget *parent, int channel, const QByteArray &in_buffer) { + LOG_D() << "try to import key(s) to channel: " << channel; auto info = GpgKeyImportExporter::GetInstance(channel).ImportKey(GFBuffer(in_buffer)); emit SignalKeyStatusUpdated(); |