mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-19 03:10:48 +00:00
Fix up paneling
This commit is contained in:
parent
91c75c9305
commit
c23a971a1f
1 changed files with 29 additions and 30 deletions
|
|
@ -413,8 +413,7 @@ ApplicationWindow {
|
||||||
}
|
}
|
||||||
|
|
||||||
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
|
||||||
|
|
@ -422,7 +421,6 @@ ApplicationWindow {
|
||||||
TableViewColumn{ role: "value"; title: "Debug messages" }
|
TableViewColumn{ role: "value"; title: "Debug messages" }
|
||||||
model: debuggerLog
|
model: debuggerLog
|
||||||
}
|
}
|
||||||
}
|
|
||||||
TableView {
|
TableView {
|
||||||
property var stackModel: ListModel {
|
property var stackModel: ListModel {
|
||||||
id: stackModel
|
id: stackModel
|
||||||
|
|
@ -436,6 +434,7 @@ ApplicationWindow {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
function setAsm(asm) {
|
function setAsm(asm) {
|
||||||
asmModel.append({asm: asm})
|
asmModel.append({asm: asm})
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue