Skip to content

Commit

Permalink
Fix identity not being loaded automatically
Browse files Browse the repository at this point in the history
  • Loading branch information
hatz2 committed Sep 21, 2022
1 parent e1c72ee commit ae414fa
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions settingsdialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ void SettingsDialog::setProfilesPath(const QString &path)
void SettingsDialog::setIdentityPath(const QString &path)
{
ui->identityLineEdit->setText(path);
emit identityPathSelected(path);
}

void SettingsDialog::setOpenInterval(int n)
Expand Down Expand Up @@ -155,7 +156,5 @@ void SettingsDialog::on_selectIdentityButton_clicked()
return;

setIdentityPath(path);

emit identityPathSelected(path);
}

0 comments on commit ae414fa

Please sign in to comment.