forked from Public/monero-gui
Merge pull request #3734
0ded8dc Settings: option to skip stop local node screen (selsta)
This commit is contained in:
3
main.qml
3
main.qml
@@ -1364,6 +1364,7 @@ ApplicationWindow {
|
||||
}
|
||||
|
||||
property bool askDesktopShortcut: isLinux
|
||||
property bool askStopLocalNode: true
|
||||
property string language: 'English (US)'
|
||||
property string language_wallet: 'English'
|
||||
property string locale: 'en_US'
|
||||
@@ -2128,7 +2129,7 @@ ApplicationWindow {
|
||||
showProcessingSplash(qsTr("Checking local node status..."));
|
||||
const handler = function(running) {
|
||||
hideProcessingSplash();
|
||||
if (running) {
|
||||
if (running && persistentSettings.askStopLocalNode) {
|
||||
showDaemonIsRunningDialog(closeAccepted);
|
||||
} else {
|
||||
closeAccepted();
|
||||
|
||||
Reference in New Issue
Block a user