From 433e6901c6cd617ba3d1f07282c99fc03c123b3d Mon Sep 17 00:00:00 2001 From: "vladimir.kuznetsov" Date: Thu, 16 Mar 2023 16:46:29 +0300 Subject: [PATCH] fixed a bug when existing containers were overwritten in the GUI when clicking the "scan installed containers" button --- client/ui/pages_logic/ServerListLogic.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/client/ui/pages_logic/ServerListLogic.cpp b/client/ui/pages_logic/ServerListLogic.cpp index 79d13c8b..e91b1e33 100644 --- a/client/ui/pages_logic/ServerListLogic.cpp +++ b/client/ui/pages_logic/ServerListLogic.cpp @@ -21,6 +21,7 @@ void ServerListLogic::onServerListPushbuttonDefaultClicked(int index) void ServerListLogic::onServerListPushbuttonSettingsClicked(int index) { uiLogic()->m_selectedServerIndex = index; + uiLogic()->m_installCredentials = m_settings->serverCredentials(index); uiLogic()->goToPage(Page::ServerSettings); }