aboutsummaryrefslogtreecommitdiff
path: root/components
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2016-12-21 21:54:47 +0200
committerRiccardo Spagni <ric@spagni.net>2016-12-21 21:54:47 +0200
commit7b049bbae9c563763bd9cfdfc31109c44be3c308 (patch)
treeafc7d39f7359e7b07340fce7138fd51aabbc125e /components
parent53ff336f00e3c148b6c8531da0bb878fe9c5f230 (diff)
parentf94782fecfd90524e295e56b6e4f52a4b411ff03 (diff)
downloadmonzero-gui-7b049bbae9c563763bd9cfdfc31109c44be3c308.tar.gz
monzero-gui-7b049bbae9c563763bd9cfdfc31109c44be3c308.tar.xz
monzero-gui-7b049bbae9c563763bd9cfdfc31109c44be3c308.zip
Merge pull request #322
f94782f daemon startup flags (Jaquee)
Diffstat (limited to 'components')
-rw-r--r--components/DaemonManagerDialog.qml20
1 files changed, 19 insertions, 1 deletions
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)")
+ }
+
+ }
}
}