From f94782fecfd90524e295e56b6e4f52a4b411ff03 Mon Sep 17 00:00:00 2001 From: Jaquee Date: Wed, 21 Dec 2016 14:30:15 +0100 Subject: daemon startup flags --- components/DaemonManagerDialog.qml | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) (limited to 'components/DaemonManagerDialog.qml') diff --git a/components/DaemonManagerDialog.qml b/components/DaemonManagerDialog.qml index da3cf582..f07e982d 100644 --- a/components/DaemonManagerDialog.qml +++ b/components/DaemonManagerDialog.qml @@ -91,7 +91,7 @@ Window { KeyNavigation.tab: cancelButton onClicked: { root.close() - appWindow.startDaemon(); + appWindow.startDaemon(daemonFlags.text); root.started() } } @@ -112,6 +112,24 @@ Window { } } } + RowLayout { + id: advancedRow + MoneroComponents.Label { + id: daemonFlagsLabel + color: "#4A4949" + text: qsTr("Daemon startup flags") + translationManager.emptyString + fontSize: 16 + } + + MoneroComponents.LineEdit { + id: daemonFlags + Layout.preferredWidth: 200 + Layout.fillWidth: true + text: appWindow.persistentSettings.daemonFlags; + placeholderText: qsTr("(optional)") + } + + } } } -- cgit v1.2.3