aboutsummaryrefslogtreecommitdiff
path: root/components/DaemonManagerDialog.qml
diff options
context:
space:
mode:
authorJaquee <jaquee.monero@gmail.com>2016-12-21 14:30:15 +0100
committerJaquee <jaquee.monero@gmail.com>2016-12-21 14:30:15 +0100
commitf94782fecfd90524e295e56b6e4f52a4b411ff03 (patch)
tree9e5e5d8fc5c27d6ac0407be9e9c57154615c137b /components/DaemonManagerDialog.qml
parent7555502d64aeaa56a04fdf232855f342227d380d (diff)
downloadmonzero-gui-f94782fecfd90524e295e56b6e4f52a4b411ff03.tar.gz
monzero-gui-f94782fecfd90524e295e56b6e4f52a4b411ff03.tar.xz
monzero-gui-f94782fecfd90524e295e56b6e4f52a4b411ff03.zip
daemon startup flags
Diffstat (limited to 'components/DaemonManagerDialog.qml')
-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)")
+ }
+
+ }
}
}