forked from Public/monero-gui
SettingsLayout: add check for updates checkbox
This commit is contained in:
3
main.qml
3
main.qml
@@ -1366,6 +1366,7 @@ ApplicationWindow {
|
||||
property int walletMode: 2
|
||||
property int lockOnUserInActivityInterval: 10 // minutes
|
||||
property bool blackTheme: true
|
||||
property bool checkForUpdates: true
|
||||
|
||||
property bool fiatPriceEnabled: false
|
||||
property bool fiatPriceToggle: false
|
||||
@@ -2008,7 +2009,7 @@ ApplicationWindow {
|
||||
id: updatesTimer
|
||||
interval: 3600 * 1000
|
||||
repeat: true
|
||||
running: !disableCheckUpdatesFlag
|
||||
running: !disableCheckUpdatesFlag && persistentSettings.checkForUpdates
|
||||
triggeredOnStart: true
|
||||
onTriggered: checkUpdates()
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user