aboutsummaryrefslogtreecommitdiffstats
path: root/ethereal/assets/qml/wallet.qml
diff options
context:
space:
mode:
Diffstat (limited to 'ethereal/assets/qml/wallet.qml')
-rw-r--r--ethereal/assets/qml/wallet.qml15
1 files changed, 15 insertions, 0 deletions
diff --git a/ethereal/assets/qml/wallet.qml b/ethereal/assets/qml/wallet.qml
index c3ddfe4b8..2d2a9db9f 100644
--- a/ethereal/assets/qml/wallet.qml
+++ b/ethereal/assets/qml/wallet.qml
@@ -412,6 +412,17 @@ ApplicationWindow {
model: memModel
}
+ SplitView {
+ orientation: Qt.Vertical
+ anchors.fill: parent
+ TableView {
+ property var debuggerLog: ListModel {
+ id: debuggerLog
+ }
+ TableViewColumn{ role: "value"; title: "Debug messages" }
+ model: debuggerLog
+ }
+ }
TableView {
property var stackModel: ListModel {
id: stackModel
@@ -449,6 +460,10 @@ ApplicationWindow {
function setStack(stack) {
stackModel.append({value: stack})
}
+ function addDebugMessage(message){
+ console.log("WOOP:")
+ debuggerLog.append({value: message})
+ }
function clearStack() {
stackModel.clear()