diff options
author | saturneric <[email protected]> | 2024-01-18 13:47:17 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-01-18 13:47:17 +0000 |
commit | e8d604cf2924ab101c2a102c23d5028473289814 (patch) | |
tree | 8eb6eee373c0343b1836fac5aed79b9be83a67dd /src/ui/UserInterfaceUtils.cpp | |
parent | fix: add test cases and solve discovered issues (diff) | |
download | GpgFrontend-e8d604cf2924ab101c2a102c23d5028473289814.tar.gz GpgFrontend-e8d604cf2924ab101c2a102c23d5028473289814.zip |
fix: slove discovered bugs
Diffstat (limited to 'src/ui/UserInterfaceUtils.cpp')
-rw-r--r-- | src/ui/UserInterfaceUtils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/UserInterfaceUtils.cpp b/src/ui/UserInterfaceUtils.cpp index 751b1f03..bd225c3e 100644 --- a/src/ui/UserInterfaceUtils.cpp +++ b/src/ui/UserInterfaceUtils.cpp @@ -273,7 +273,7 @@ void CommonUtils::SlotImportKeys(QWidget *parent, const QString &in_buffer) { GpgKeyImportExporter::GetInstance().ImportKey(GFBuffer(in_buffer)); emit SignalKeyStatusUpdated(); - (new KeyImportDetailDialog(info, parent))->exec(); + (new KeyImportDetailDialog(info, parent)); } void CommonUtils::SlotImportKeyFromFile(QWidget *parent) { |