Fix up paneling

pull/33/merge
Maran 11 years ago
parent 91c75c9305
commit c23a971a1f
  1. 61
      ethereal/assets/qml/wallet.qml

@ -401,37 +401,36 @@ ApplicationWindow {
orientation: Qt.Vertical orientation: Qt.Vertical
anchors.fill: parent anchors.fill: parent
TableView { TableView {
property var memModel: ListModel { property var memModel: ListModel {
id: memModel id: memModel
} }
height: parent.height/2 height: parent.height/2
width: parent.width width: parent.width
TableViewColumn{ id:mnumColmn ; role: "num" ; title: "#" ; width: 50} TableViewColumn{ id:mnumColmn ; role: "num" ; title: "#" ; width: 50}
TableViewColumn{ role: "value" ; title: "Memory" ; width: 750} TableViewColumn{ role: "value" ; title: "Memory" ; width: 750}
model: memModel model: memModel
} }
SplitView { SplitView {
orientation: Qt.Vertical orientation: Qt.Horizontal
anchors.fill: parent TableView {
TableView { property var debuggerLog: ListModel {
property var debuggerLog: ListModel { id: debuggerLog
id: debuggerLog }
} TableViewColumn{ role: "value"; title: "Debug messages" }
TableViewColumn{ role: "value"; title: "Debug messages" } model: debuggerLog
model: debuggerLog }
} TableView {
} property var stackModel: ListModel {
TableView { id: stackModel
property var stackModel: ListModel { }
id: stackModel height: parent.height/2
} width: parent.width
height: parent.height/2 TableViewColumn{ role: "value" ; title: "Stack" ; width: parent.width }
width: parent.width model: stackModel
TableViewColumn{ role: "value" ; title: "Stack" ; width: parent.width } }
model: stackModel }
}
} }
} }
} }

Loading…
Cancel
Save