diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 3417c544..cde4403a 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -84,7 +84,7 @@ jobs: runs-on: windows-latest env: - QT_VERSION: 6.6.2 + QT_VERSION: 6.9.2 QIF_VERSION: 4.7 BUILD_ARCH: 64 PROD_AGW_PUBLIC_KEY: ${{ secrets.PROD_AGW_PUBLIC_KEY }} diff --git a/client/ui/qml/DefaultVpn/Pages/PageSettingsServersList.qml b/client/ui/qml/DefaultVpn/Pages/PageSettingsServersList.qml index 09f3c229..4d2902af 100644 --- a/client/ui/qml/DefaultVpn/Pages/PageSettingsServersList.qml +++ b/client/ui/qml/DefaultVpn/Pages/PageSettingsServersList.qml @@ -162,6 +162,10 @@ Page { } onClicked: function() { + if (ConnectionController.isConnected) { + PageController.showNotificationMessage(qsTr("Unable change server location while there is an active connection")) + return + } ServersModel.defaultIndex = index }