swapped "Clear client cached profile" and "Clear server from Amnesia software" buttons

This commit is contained in:
vladimir.kuznetsov 2023-01-15 18:47:16 +03:00
parent f735b401df
commit 19a41b2792

View file

@ -87,19 +87,19 @@ PageBase {
BlueButtonType { BlueButtonType {
Layout.fillWidth: true Layout.fillWidth: true
Layout.topMargin: 60 Layout.topMargin: 60
text: ServerSettingsLogic.pushButtonClearText text: ServerSettingsLogic.pushButtonClearClientCacheText
visible: ServerSettingsLogic.pushButtonClearVisible visible: ServerSettingsLogic.pushButtonClearClientCacheVisible
onClicked: { onClicked: {
ServerSettingsLogic.onPushButtonClearServer() ServerSettingsLogic.onPushButtonClearClientCacheClicked()
} }
} }
BlueButtonType { BlueButtonType {
Layout.fillWidth: true Layout.fillWidth: true
Layout.topMargin: 10 Layout.topMargin: 10
text: ServerSettingsLogic.pushButtonClearClientCacheText text: ServerSettingsLogic.pushButtonClearText
visible: ServerSettingsLogic.pushButtonClearClientCacheVisible visible: ServerSettingsLogic.pushButtonClearVisible
onClicked: { onClicked: {
ServerSettingsLogic.onPushButtonClearClientCacheClicked() ServerSettingsLogic.onPushButtonClearServer()
} }
} }
BlueButtonType { BlueButtonType {