From e5dcb25a4a461d641a0cbc5aaa3fbbf7abd7cad5 Mon Sep 17 00:00:00 2001 From: Mitternacht822 Date: Fri, 1 Aug 2025 07:45:19 +0400 Subject: [PATCH] fix: removed the ability to change location while making connection (#1736) --- client/ui/qml/Pages2/PageSettingsApiAvailableCountries.qml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/client/ui/qml/Pages2/PageSettingsApiAvailableCountries.qml b/client/ui/qml/Pages2/PageSettingsApiAvailableCountries.qml index ce57e97e2..e4c57b5be 100644 --- a/client/ui/qml/Pages2/PageSettingsApiAvailableCountries.qml +++ b/client/ui/qml/Pages2/PageSettingsApiAvailableCountries.qml @@ -119,6 +119,10 @@ PageType { checkable: !ConnectionController.isConnected onClicked: { + if (ConnectionController.isConnectionInProgress) { + PageController.showNotificationMessage(qsTr("Unable change server location while trying to make an active connection")) + return + } if (ConnectionController.isConnected) { PageController.showNotificationMessage(qsTr("Unable change server location while there is an active connection")) return