fix: Edit account comment bug.

This commit is contained in:
sunwen
2024-07-17 17:23:02 +08:00
parent 603d24919b
commit a09381e5bb
6 changed files with 22 additions and 10 deletions

View File

@@ -144,6 +144,11 @@ AccountTableForm::AccountTableForm(QWidget* aParent)
btnEdit->setText(tr("Edit"));
btnDelete->setText(tr("Delete"));
});
connect(EventCenter::Default(), &EventCenter::CurrentUserInfoChanged, [model]()
{
model->select();
});
}
AccountTableForm::~AccountTableForm()