diff --git a/CHANGELOG.md b/CHANGELOG.md index 3399433a..2ca8c54b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ - Minor: Added a description for the logging option under moderation tab. (#6514) - Minor: Fixed "edit hotkey" dialog opening like a normal window. (#6540) - Bugfix: Expose the "Extra extension IDs" setting on non-Windows systems too. (#6509) +- Bugfix: Fixed settings occasionally not opening when clicking on "Manage Accounts" in the account switcher. (#6543) - Bugfix: Fixed font change not resulting in forced layout update. (#6536) - Bugfix: Fixed scrollbar rect computation potentially resulting in overflows. (#6547) - Dev: Update release documentation. (#6498) diff --git a/src/widgets/AccountSwitchPopup.cpp b/src/widgets/AccountSwitchPopup.cpp index a939b7ea..cbb5632e 100644 --- a/src/widgets/AccountSwitchPopup.cpp +++ b/src/widgets/AccountSwitchPopup.cpp @@ -40,7 +40,8 @@ AccountSwitchPopup::AccountSwitchPopup(QWidget *parent) vbox->addLayout(hbox); connect(manageAccountsButton, &QPushButton::clicked, [this]() { - SettingsDialog::showDialog(this, SettingsDialogPreference::Accounts); + SettingsDialog::showDialog(this->parentWidget(), + SettingsDialogPreference::Accounts); }); this->getLayoutContainer()->setLayout(vbox);