now, when onUpdateAllPages is called, the ClientInfoLogic and ClientManagementLogic pages will not be updated

- moved the Client Management button to the Advanced Settings page
-
This commit is contained in:
vladimir.kuznetsov 2023-04-16 07:32:32 +03:00
parent af29637163
commit 0ae2a1f177
4 changed files with 14 additions and 12 deletions

View file

@ -181,6 +181,9 @@ void UiLogic::showOnStartup()
void UiLogic::onUpdateAllPages()
{
for (auto logic : m_logicMap) {
if (dynamic_cast<ClientInfoLogic*>(logic) || dynamic_cast<ClientManagementLogic*>(logic)) {
continue;
}
logic->onUpdatePage();
}
}