diff options
author | obscuren <geffobscura@gmail.com> | 2014-05-27 03:11:38 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-05-27 03:11:38 +0800 |
commit | d694e00a3340a36c39872950bb7a2404e9686c18 (patch) | |
tree | 51561264b897ae7b709447da0ab16a0b2962af80 /ethereal/assets | |
parent | 26ecf4b7809ebf79d2923f0b661818a37271be33 (diff) | |
download | go-tangerine-d694e00a3340a36c39872950bb7a2404e9686c18.tar go-tangerine-d694e00a3340a36c39872950bb7a2404e9686c18.tar.gz go-tangerine-d694e00a3340a36c39872950bb7a2404e9686c18.tar.bz2 go-tangerine-d694e00a3340a36c39872950bb7a2404e9686c18.tar.lz go-tangerine-d694e00a3340a36c39872950bb7a2404e9686c18.tar.xz go-tangerine-d694e00a3340a36c39872950bb7a2404e9686c18.tar.zst go-tangerine-d694e00a3340a36c39872950bb7a2404e9686c18.zip |
Fixed debugger
Diffstat (limited to 'ethereal/assets')
-rw-r--r-- | ethereal/assets/qml/wallet.qml | 75 | ||||
-rw-r--r-- | ethereal/assets/samplecoin/samplecoin.html | 2 |
2 files changed, 45 insertions, 32 deletions
diff --git a/ethereal/assets/qml/wallet.qml b/ethereal/assets/qml/wallet.qml index f23f182f3..f42cf3b1b 100644 --- a/ethereal/assets/qml/wallet.qml +++ b/ethereal/assets/qml/wallet.qml @@ -409,7 +409,7 @@ ApplicationWindow { } - Window { + ApplicationWindow { id: debugWindow visible: false title: "Debugger" @@ -447,36 +447,49 @@ ApplicationWindow { orientation: Qt.Vertical anchors.fill: parent - TableView { - property var memModel: ListModel { - id: memModel - } - height: parent.height/2 - width: parent.width - TableViewColumn{ id:mnumColmn ; role: "num" ; title: "#" ; width: 50} - TableViewColumn{ role: "value" ; title: "Memory" ; width: 750} - model: memModel - } - - SplitView { - orientation: Qt.Horizontal - TableView { - property var debuggerLog: ListModel { - id: debuggerLog - } - TableViewColumn{ role: "value"; title: "Debug messages" } - model: debuggerLog - } - TableView { - property var stackModel: ListModel { - id: stackModel - } - height: parent.height/2 - width: parent.width - TableViewColumn{ role: "value" ; title: "Stack" ; width: parent.width } - model: stackModel - } - } + TableView { + property var memModel: ListModel { + id: memModel + } + height: parent.height/2 + width: parent.width + TableViewColumn{ id:mnumColmn ; role: "num" ; title: "#" ; width: 50} + TableViewColumn{ role: "value" ; title: "Memory" ; width: 750} + model: memModel + } + + SplitView { + orientation: Qt.Horizontal + TableView { + property var debuggerLog: ListModel { + id: debuggerLog + } + TableViewColumn{ role: "value"; title: "Debug messages" } + model: debuggerLog + } + TableView { + property var stackModel: ListModel { + id: stackModel + } + height: parent.height/2 + width: parent.width + TableViewColumn{ role: "value" ; title: "Stack" ; width: parent.width } + model: stackModel + } + } + } + } + } + statusBar: StatusBar { + RowLayout { + anchors.fill: parent + Button { + property var enabled: true + id: debugNextButton + onClicked: { + ui.next() + } + text: "Next" } } } diff --git a/ethereal/assets/samplecoin/samplecoin.html b/ethereal/assets/samplecoin/samplecoin.html index 3892141cd..e780aefb4 100644 --- a/ethereal/assets/samplecoin/samplecoin.html +++ b/ethereal/assets/samplecoin/samplecoin.html @@ -9,7 +9,7 @@ <script type="text/javascript"> -var jefcoinAddr = "fc0a9436890478bb9b1c6ed7455c2535366f4a99" +var jefcoinAddr = "518546ffa883dcc838a64bc2dabada0fd64af459" var mAddr = "" function createTransaction() { |