aboutsummaryrefslogtreecommitdiff
path: root/pages/settings
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2020-05-01 15:07:50 -0500
committerluigi1111 <luigi1111w@gmail.com>2020-05-01 15:07:50 -0500
commitb6fdb709bad551d45d3e6fe25a6ac7c7888b446f (patch)
tree585251654dce0faf1e7409d80ccea7acec1ce677 /pages/settings
parent9aef3bab333af15f35a75a75319db30d88221293 (diff)
parent4a7ccd8d821370d5dd34f8f46d9a70669e9f523b (diff)
downloadmonzero-gui-b6fdb709bad551d45d3e6fe25a6ac7c7888b446f.tar.gz
monzero-gui-b6fdb709bad551d45d3e6fe25a6ac7c7888b446f.tar.xz
monzero-gui-b6fdb709bad551d45d3e6fe25a6ac7c7888b446f.zip
Merge pull request #2873
4a7ccd8 SettingsLayout: add check for updates checkbox (selsta)
Diffstat (limited to 'pages/settings')
-rw-r--r--pages/settings/SettingsLayout.qml8
1 files changed, 8 insertions, 0 deletions
diff --git a/pages/settings/SettingsLayout.qml b/pages/settings/SettingsLayout.qml
index 4515fe99..4d338045 100644
--- a/pages/settings/SettingsLayout.qml
+++ b/pages/settings/SettingsLayout.qml
@@ -59,6 +59,14 @@ Rectangle {
}
MoneroComponents.CheckBox {
+ id: checkForUpdatesCheckBox
+ enabled: !disableCheckUpdatesFlag
+ checked: persistentSettings.checkForUpdates && !disableCheckUpdatesFlag
+ onClicked: persistentSettings.checkForUpdates = !persistentSettings.checkForUpdates
+ text: qsTr("Check for updates periodically") + translationManager.emptyString
+ }
+
+ MoneroComponents.CheckBox {
id: hideBalanceCheckBox
checked: persistentSettings.hideBalance
onClicked: {