Skip to content

Commit

Permalink
fix #380
Browse files Browse the repository at this point in the history
  • Loading branch information
FiloSpaTeam committed May 3, 2018
1 parent 1fdc1ef commit 2bd0c0d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/passworddialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ PasswordDialog::PasswordDialog(const QString &file, const bool &isNew,
: QDialog(parent), ui(new Ui::PasswordDialog), m_file(file),
m_isNew(isNew) {

QtPassSettings::getPass()->Show(m_file);
if (!isNew)
QtPassSettings::getPass()->Show(m_file);

ui->setupUi(this);

Expand Down

0 comments on commit 2bd0c0d

Please sign in to comment.