From 2c978d43dbf0c2c26960e10c236a990bd5da3e8d Mon Sep 17 00:00:00 2001 From: Ronan Abhamon Date: Mon, 26 Jun 2017 09:19:01 +0200 Subject: [PATCH] fix(SettingsAdvanced): disable `send logs` button when logs are disabled --- ui/views/App/Settings/SettingsAdvanced.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/views/App/Settings/SettingsAdvanced.qml b/ui/views/App/Settings/SettingsAdvanced.qml index da7c31b06..7153f3c7d 100644 --- a/ui/views/App/Settings/SettingsAdvanced.qml +++ b/ui/views/App/Settings/SettingsAdvanced.qml @@ -74,7 +74,7 @@ TabContainer { } TextButtonB { - enabled: !sendLogsBlock.loading + enabled: !sendLogsBlock.loading && SettingsModel.logsEnabled text: qsTr('sendLogs') onClicked: sendLogsBlock.execute()