Skip to content

Commit

Permalink
Merge pull request #640 from lherschi/main
Browse files Browse the repository at this point in the history
fix the unintended "running" of the entropy window in the keygen dial…
  • Loading branch information
annejan authored Aug 20, 2023
2 parents f8e54ec + ab8cd93 commit 1e5a217
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/keygendialog.ui
Original file line number Diff line number Diff line change
Expand Up @@ -240,8 +240,8 @@
# first test version please comment
#
%echo Generating a default key
Key-Type: default
Subkey-Type: default
Key-Type: RSA
Subkey-Type: RSA
Name-Real:
Name-Comment: QtPass
Name-Email:
Expand Down
3 changes: 3 additions & 0 deletions src/pass.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,9 @@ void Pass::finished(int id, int exitCode, const QString &out,
case PASS_COPY:
emit finishedCopy(out, err);
break;
case GPG_GENKEYS:
emit finishedGenerateGPGKeys(out, err);
break;
default:
#ifdef QT_DEBUG
dbg() << "Unhandled process type" << pid;
Expand Down

0 comments on commit 1e5a217

Please sign in to comment.