aboutsummaryrefslogtreecommitdiffstats
path: root/ethereal/assets/qml/views/info.qml
diff options
context:
space:
mode:
Diffstat (limited to 'ethereal/assets/qml/views/info.qml')
-rw-r--r--ethereal/assets/qml/views/info.qml10
1 files changed, 5 insertions, 5 deletions
diff --git a/ethereal/assets/qml/views/info.qml b/ethereal/assets/qml/views/info.qml
index 96b8e4acc..9e05e2f8e 100644
--- a/ethereal/assets/qml/views/info.qml
+++ b/ethereal/assets/qml/views/info.qml
@@ -35,11 +35,11 @@ Rectangle {
text: "Client ID"
}
TextField {
- text: eth.getCustomIdentifier()
+ text: gui.getCustomIdentifier()
width: 500
placeholderText: "Anonymous"
onTextChanged: {
- eth.setCustomIdentifier(text)
+ gui.setCustomIdentifier(text)
}
}
}
@@ -75,7 +75,7 @@ Rectangle {
MouseArea{
anchors.fill: parent
onClicked: {
- eth.registerName(nameToReg.text)
+ gui.registerName(nameToReg.text)
nameToReg.text = ""
}
}
@@ -107,7 +107,7 @@ Rectangle {
Slider {
id: logLevelSlider
- value: eth.getLogLevelInt()
+ value: gui.getLogLevelInt()
anchors {
right: parent.right
top: parent.top
@@ -124,7 +124,7 @@ Rectangle {
stepSize: 1
onValueChanged: {
- eth.setLogLevel(value)
+ gui.setLogLevel(value)
}
}
}