aboutsummaryrefslogtreecommitdiffstats
path: root/ethereal/assets/qml/views/info.qml
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-08-14 06:18:37 +0800
committerobscuren <geffobscura@gmail.com>2014-08-14 06:18:37 +0800
commit95ba340d07a02da40000d4bcf2b1bb24bd7856ef (patch)
tree79a067c70f5a1624c87b17c8efed02d160a0b0b8 /ethereal/assets/qml/views/info.qml
parentd518423b9c493bf5b42e6575db9a32106812e6bc (diff)
downloadgo-tangerine-95ba340d07a02da40000d4bcf2b1bb24bd7856ef.tar
go-tangerine-95ba340d07a02da40000d4bcf2b1bb24bd7856ef.tar.gz
go-tangerine-95ba340d07a02da40000d4bcf2b1bb24bd7856ef.tar.bz2
go-tangerine-95ba340d07a02da40000d4bcf2b1bb24bd7856ef.tar.lz
go-tangerine-95ba340d07a02da40000d4bcf2b1bb24bd7856ef.tar.xz
go-tangerine-95ba340d07a02da40000d4bcf2b1bb24bd7856ef.tar.zst
go-tangerine-95ba340d07a02da40000d4bcf2b1bb24bd7856ef.zip
Tweaks and fixes + added webview debugger
* Require better icons .. someone? :-)
Diffstat (limited to 'ethereal/assets/qml/views/info.qml')
-rw-r--r--ethereal/assets/qml/views/info.qml27
1 files changed, 2 insertions, 25 deletions
diff --git a/ethereal/assets/qml/views/info.qml b/ethereal/assets/qml/views/info.qml
index 9e05e2f8e..fcddd46e2 100644
--- a/ethereal/assets/qml/views/info.qml
+++ b/ethereal/assets/qml/views/info.qml
@@ -17,6 +17,7 @@ Rectangle {
color: "#00000000"
Column {
+ id: info
spacing: 3
anchors.fill: parent
anchors.topMargin: 5
@@ -49,7 +50,7 @@ Rectangle {
}
TableView {
id: addressView
- width: parent.width - 200
+ width: parent.width
height: 200
anchors.bottom: logLayout.top
TableViewColumn{ role: "name"; title: "name" }
@@ -58,30 +59,6 @@ Rectangle {
model: addressModel
}
- Rectangle {
- anchors.top: addressView.top
- anchors.left: addressView.right
- anchors.leftMargin: 20
-
- TextField {
- placeholderText: "Name to register"
- id: nameToReg
- width: 150
- }
-
- Button {
- anchors.top: nameToReg.bottom
- text: "Register"
- MouseArea{
- anchors.fill: parent
- onClicked: {
- gui.registerName(nameToReg.text)
- nameToReg.text = ""
- }
- }
- }
- }
-
property var logModel: ListModel {
id: logModel
}